Posted On March 29, 2019

iSeries Access ODBC Setup

kimconnect 0 comments
blog.KimConnect.com >> Database , Windows >> iSeries Access ODBC Setup

Run ODBC Data Source Administrator > click on System DSN

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

NUMLOCK windows XP

Go to Start>> Run. Type in: regedit [Enter] or click OK. Navigate to the following…

Robocopy

The following commands copy folders and retain all security attributes:  robocopy "some directory" "some directory…

PowerShell: Enable TLS 1.2 on Windows

function enableTls12{ try{ $null=New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server' -Force $null=New-Item 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client' -Force $null=New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server'…