-
Notifications
You must be signed in to change notification settings - Fork 593
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #666 from nick-ms-ts/main
add ssis docs
- Loading branch information
Showing
33 changed files
with
1,718 additions
and
0 deletions.
There are no files selected for viewing
Binary file added
BIN
+5.5 KB
SamplesV2/SQLServerIntegrationServices/publicpreview/CustomSetupScript/Sample/SleepTask.dll
Binary file not shown.
Binary file added
BIN
+35.7 KB
...erverIntegrationServices/publicpreview/CustomSetupScript/Sample/gacutil/1033/gacutlrc.dll
Binary file not shown.
Binary file added
BIN
+158 KB
...2/SQLServerIntegrationServices/publicpreview/CustomSetupScript/Sample/gacutil/gacutil.exe
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
...rverIntegrationServices/publicpreview/CustomSetupScript/Sample/gacutil/gacutil.exe.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version ="1.0"?> | ||
<configuration> | ||
<startup useLegacyV2RuntimeActivationPolicy="true"> | ||
<requiredRuntime safemode="true" imageVersion="v4.0.30319" version="v4.0.30319"/> | ||
</startup> | ||
</configuration> |
27 changes: 27 additions & 0 deletions
27
SamplesV2/SQLServerIntegrationServices/publicpreview/CustomSetupScript/Sample/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
@echo off | ||
|
||
xcopy /F /Y SleepTask.dll "%ProgramFiles%\Microsoft SQL Server\140\DTS\Tasks" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo "Complete copied to x64 folder" | ||
|
||
xcopy /F /Y SleepTask.dll "%ProgramFiles(x86)%\Microsoft SQL Server\140\DTS\Tasks" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo "Complete copied to x86 folder" | ||
|
||
gacutil\gacutil /i SleepTask.dll /f | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully installed Sleep Task. | ||
|
||
REM If you want to persist access credentials for file shares or Azure Files, use the commands below: | ||
REM cmdkey /add:YourFileShareServerName /user:YourDomainName\YourUsername /pass:YourPassword | ||
REM cmdkey /add:YourAzureStorageAccountName.file.core.windows.net /user:azure\YourAzureStorageAccountName /pass:YourAccessKey | ||
REM You can then access \\YourFileShareServerName\YourFolderName or \\YourAzureStorageAccountName.file.core.windows.net\YourFolderName directly in your SSIS packages. |
20 changes: 20 additions & 0 deletions
20
...vices/publicpreview/CustomSetupScript/UserScenarios/.NET FRAMEWORK 3.5/InstallNetFx35.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Try { | ||
if ((Get-WindowsFeature -Name Net-Framework-Core).Installed) | ||
{ | ||
Write-Output ".NET framework 3.5 has already been installed." | ||
} | ||
else | ||
{ | ||
if ((Install-WindowsFeature -Name Net-Framework-Core -Source (Get-Location).Path -LogPath %CUSTOM_SETUP_SCRIPT_LOG_DIR%\install.log).Success) | ||
{ | ||
Write-Output ".NET framework 3.5 has been installed successfully" | ||
} | ||
else | ||
{ | ||
throw "Failed to install .NET framework 3.5" | ||
} | ||
} | ||
} | ||
Catch { | ||
Exit 1 | ||
} |
9 changes: 9 additions & 0 deletions
9
...grationServices/publicpreview/CustomSetupScript/UserScenarios/.NET FRAMEWORK 3.5/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@echo off | ||
|
||
powershell.exe -ExecutionPolicy RemoteSigned -File %~dp0\InstallNetFx35.ps1 | ||
|
||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully installation of .net framwork 3.5 |
Binary file added
BIN
+69.4 MB
....NET FRAMEWORK 3.5/microsoft-windows-netfx3-ondemand-package~31bf3856ad364e35~amd64~~.cab
Binary file not shown.
Binary file added
BIN
+2.65 MB
...IntegrationServices/publicpreview/CustomSetupScript/UserScenarios/BCP/MsSqlCmdLnUtils.msi
Binary file not shown.
10 changes: 10 additions & 0 deletions
10
...2/SQLServerIntegrationServices/publicpreview/CustomSetupScript/UserScenarios/BCP/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@echo off | ||
|
||
echo Start to install MsSqlCmdLnUtils.msi | ||
msiexec /i MsSqlCmdLnUtils.msi /quiet /lv %CUSTOM_SETUP_SCRIPT_LOG_DIR%\MsSqlCmdLnUtils.log IACCEPTMSSQLCMDLNUTILSLICENSETERMS=YES | ||
|
||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully installation of MsSqlCmdLnUtils.msi |
1 change: 1 addition & 0 deletions
1
...rverIntegrationServices/publicpreview/CustomSetupScript/UserScenarios/DNS SUFFIX/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
REG ADD HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters /v SearchList /t REG_SZ /d test.com /f |
3 changes: 3 additions & 0 deletions
3
...verIntegrationServices/publicpreview/CustomSetupScript/UserScenarios/EXCEL/GacInstall.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@echo off | ||
|
||
powershell.exe -ExecutionPolicy RemoteSigned -File %~dp0\GacInstall.ps1 -AssemblyPath %1 |
33 changes: 33 additions & 0 deletions
33
...verIntegrationServices/publicpreview/CustomSetupScript/UserScenarios/EXCEL/GacInstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
param( | ||
[string]$AssemblyPath | ||
) | ||
|
||
$AssemblyPath = [System.IO.Path]::GetFullPath($AssemblyPath) | ||
Write-Output "Start to Gac assembly '$AssemblyPath'" | ||
|
||
$assembly = [System.Reflection.Assembly]::LoadFile($AssemblyPath) | ||
if ($assembly.GetName().GetPublicKey().Length -eq 0) | ||
{ | ||
throw "The assembly '$assembly' is not strong name signed!" | ||
} | ||
elseif ($assembly.GlobalAssemblyCache) | ||
{ | ||
Write-Output "The assembly '$assembly' has already been GACed." | ||
exit 0 | ||
} | ||
|
||
[System.Reflection.Assembly]::LoadWithPartialName("System.EnterpriseServices") | Out-Null | ||
$publish = New-Object System.EnterpriseServices.Internal.Publish | ||
$publish.GacInstall($AssemblyPath) | ||
|
||
$assembly = [System.Reflection.Assembly]::LoadFile($AssemblyPath) | ||
if ($assembly.GlobalAssemblyCache) | ||
{ | ||
Write-Output "Successfully GACed assembly '$assembly'." | ||
} | ||
else | ||
{ | ||
throw "Failed to Gac assembly '$assembly'." | ||
} | ||
|
||
|
15 changes: 15 additions & 0 deletions
15
...SQLServerIntegrationServices/publicpreview/CustomSetupScript/UserScenarios/EXCEL/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@echo off | ||
|
||
call GacInstall.cmd ExcelDataReader.dll | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully installation of ExcelDataReader.dll | ||
|
||
call GacInstall.cmd DocumentFormat.OpenXml.dll | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully installation of DocumentFormat.OpenXml.dll |
61 changes: 61 additions & 0 deletions
61
...egrationServices/publicpreview/CustomSetupScript/UserScenarios/ORACLE ENTERPRISE/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
@echo off | ||
|
||
echo "start main.cmd" | ||
time /T | ||
|
||
"%SystemRoot%\System32\msiexec.exe" /i AttunitySSISOraAdaptersSetup.msi /qn /norestart /log oracle32bit.log EulaForm_Property=Yes RestartSqlServerSilent=true | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully installation of AttunitySSISOraAdaptersSetup.msi | ||
|
||
"%SystemRoot%\System32\msiexec.exe" /i AttunitySSISOraAdaptersSetupX64.msi /qn /norestart /log oracle64bit.log EulaForm_Property=Yes RestartSqlServerSilent=true | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully installation of AttunitySSISOraAdaptersSetupX64.msi | ||
|
||
start /wait xcopy /R /F /Y ".\*.log" "%CUSTOM_SETUP_SCRIPT_LOG_DIR%\" | ||
|
||
PowerShell Expand-Archive -Path "instantclient-basic-windows.x64-19.13.0.0.0dbru.zip" -DestinationPath "%SystemDrive%\OracleInstantClient" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully Expand-Archive instantclient-basic-windows.x64-19.13.0.0.0dbru.zip | ||
|
||
setx /M PATH "%SystemDrive%\OracleInstantClient\instantclient_19_13\;%PATH%" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully set environment path for Oracle instant client | ||
|
||
reg add HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ORACLE_19_13 | ||
reg add HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\ORACLE_19_13 /v ORACLE_HOME /t REG_SZ /d %SystemDrive%\OracleInstantClient\instantclient_19_13\ | ||
echo Successfully add registry for ORACLE_HOME | ||
|
||
REM Set TNS_ADMIN variable for SSIS to read tbsnames.ora file | ||
setx TNS_ADMIN "%SystemDrive%\OracleInstantClient\instantclient_19_13\network\admin" /M | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully set TNS_ADMIN | ||
|
||
REM Copy tnsnames.ora which contains the connection information to be used by SSIS package Oracle Connector | ||
REM TNS Service name can also in format of host:port/service_name, which does not use tnsnames.ora | ||
start /wait xcopy /R /F /Y %cd%\tnsnames.ora %SystemDrive%\OracleInstantClient\instantclient_19_13\network\admin\ | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully copied tnsnames.ora | ||
|
||
echo "Target Log dir is %CUSTOM_SETUP_SCRIPT_LOG_DIR%" | ||
dir "%CUSTOM_SETUP_SCRIPT_LOG_DIR%" | ||
|
||
time /T | ||
echo "Complete main.cmd" |
12 changes: 12 additions & 0 deletions
12
...tionServices/publicpreview/CustomSetupScript/UserScenarios/ORACLE ENTERPRISE/tnsnames.ora
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# tnsnames.ora Network Configuration File | ||
|
||
ReplaceSampleTNSName = | ||
(DESCRIPTION = | ||
(ADDRESS_LIST = | ||
(ADDRESS = (PROTOCOL = TCP)(HOST = replace_hostname)(PORT = 1521)) | ||
) | ||
(CONNECT_DATA = | ||
(SERVICE_NAME = replace_servicename) | ||
) | ||
) | ||
|
26 changes: 26 additions & 0 deletions
26
...onServices/publicpreview/CustomSetupScript/UserScenarios/ORACLE STANDARD ADO.NET/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
@echo off | ||
|
||
PowerShell Expand-Archive -Path ".\ODP.NET_Managed_ODAC122cR1.zip" -DestinationPath ".\ODP.NET" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully Expand-Archive ODP.NET_Managed_ODAC122cR1.zip | ||
|
||
start /D .\ODP.NET /wait cmd /c "call install_odpm.bat %SystemDrive%\ODP.NET both true > %CUSTOM_SETUP_SCRIPT_LOG_DIR%\install2.log" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully Execute install_odpm.bat | ||
|
||
REM install_odpm.bat will redirect some of the standard output to %SystemDrive%\ODP.NET\install.log, | ||
REM we need to copy it to %CUSTOM_SETUP_SCRIPT_LOG_DIR% so that it can be uploaded to your blob container | ||
|
||
start /wait xcopy /R /F /Y %SystemDrive%\ODP.NET\install.log %CUSTOM_SETUP_SCRIPT_LOG_DIR% | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully Copied %SystemDrive%\ODP.NET\install.log to %CUSTOM_SETUP_SCRIPT_LOG_DIR% | ||
|
47 changes: 47 additions & 0 deletions
47
...ationServices/publicpreview/CustomSetupScript/UserScenarios/ORACLE STANDARD ODBC/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
@echo off | ||
|
||
set DriverFolderName=instantclient_18_3 | ||
set DriverName=Oracle in instantclient_18_3 | ||
|
||
REM Please overwrite the value of following three variables | ||
set DSN=<DSN Name> | ||
set ServerName=<Oracle Server Name> | ||
set UserID=<User ID> | ||
|
||
echo Install Oracle ODBC Driver ... | ||
powershell.exe Expand-Archive -Path ".\instantclient-basiclite-windows.x64-18.3.0.0.0dbru.zip" -DestinationPath "%SystemDrive%\oracle" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully Expand-Archive instantclient-basiclite-windows.x64 | ||
|
||
powershell.exe Expand-Archive -Path ".\instantclient-odbc-windows.x64-18.3.0.0.0dbru.zip" -DestinationPath "%SystemDrive%\oracle" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully Expand-Archive instantclient-odbc-windows.x64 | ||
|
||
start /D %SystemDrive%\oracle\%DriverFolderName% .\odbc_install.exe | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully installed Oracle ODBC Driver! | ||
|
||
setx /M PATH "%SystemDrive%\oracle\%DriverFolderName%;%PATH%" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully set environment path | ||
|
||
echo Add DSN %DSN% | ||
odbcconf CONFIGSYSDSN "%DriverName%" "DSN=%DSN%|SERVER=%ServerName%|UID=%UserID%" /S /Lv %CUSTOM_SETUP_SCRIPT_LOG_DIR%\odbcconf.txt | ||
|
||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully added DSN %DSN%! |
27 changes: 27 additions & 0 deletions
27
...tionServices/publicpreview/CustomSetupScript/UserScenarios/ORACLE STANDARD OLEDB/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
@echo off | ||
|
||
PowerShell Expand-Archive -Path ".\ODAC122010Xcopy_x64.zip" -DestinationPath ".\ODAC122010Xcopy_x64" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully Expand-Archive ODAC122010Xcopy_x64.zip completed | ||
|
||
start /D .\ODAC122010Xcopy_x64 /wait cmd /c "call install.bat oledb %SystemDrive%\ODAC odbc > %CUSTOM_SETUP_SCRIPT_LOG_DIR%\install2.log" | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully Execute install.bat completed | ||
|
||
REM need to set install path to environment variable | ||
setx /M PATH "%SystemDrive%\ODAC;%SystemDrive%\ODAC\bin;%PATH%" | ||
|
||
REM install.bat will redirect some of the standard output to %SystemDrive%\ODAC\install.log, | ||
REM we need to copy it to %CUSTOM_SETUP_SCRIPT_LOG_DIR% so that it can be uploaded to your blob container | ||
start /wait xcopy /R /F /Y %SystemDrive%\ODAC\install.log %CUSTOM_SETUP_SCRIPT_LOG_DIR% | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully Copied %SystemDrive%\ODAC\install.log to %CUSTOM_SETUP_SCRIPT_LOG_DIR% |
9 changes: 9 additions & 0 deletions
9
...ntegrationServices/publicpreview/CustomSetupScript/UserScenarios/POSTGRESQL ODBC/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@echo off | ||
|
||
echo Installing PostgreSQL ODBC drivers... | ||
|
||
msiexec /i psqlodbc_x64.msi /qn /lv %CUSTOM_SETUP_SCRIPT_LOG_DIR%\psqx64l.LOG | ||
|
||
msiexec /i psqlodbc_x86.msi /qn /lv %CUSTOM_SETUP_SCRIPT_LOG_DIR%\psqlx86.LOG | ||
|
||
echo Installation completed |
14 changes: 14 additions & 0 deletions
14
...QLServerIntegrationServices/publicpreview/CustomSetupScript/UserScenarios/SAP BW/main.cmd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@echo off | ||
|
||
REM Copy for SAP connector depended file | ||
start /wait xcopy /R /F /Y librfc32.dll %windir%\System32\ | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
start /wait xcopy /R /F /Y librfc32.dll %windir%\SysWow64\ | ||
REM error handling | ||
if %ERRORLEVEL% neq 0 ( | ||
echo Failed with ExitCode %ERRORLEVEL% | ||
exit /b %ERRORLEVEL%) | ||
echo Successfully copied for SAP connector depended file |
Binary file added
BIN
+29.9 MB
...grationServices/publicpreview/CustomSetupScript/UserScenarios/STORAGE/AzurePowerShell.msi
Binary file not shown.
Oops, something went wrong.