IBM Client Access
Anyone have a way to uninstall IBM Client Access Express silently. It has multiple .isu files.
0 Comments
[ + ] Show comments
Answers (3)
Please log in to answer
Posted by:
klodeckel
20 years ago
Posted by:
127.0.0.1
19 years ago
For the uninstallation i build this vbs code:
*Snip*
*snip*
Works fine...
Sebastian
*Snip*
On Error Resume Next
Dim oShell
Dim oFSO
Dim strProgramFiles
Dim strWinDir
Set oShell = CreateObject("WScript.Shell")
Set oFSO = CreateObject("Scripting.FileSystemObject")
strProgramFiles = oShell.ExpandEnvironmentStrings("%Programfiles%")
strWinDir = oShell.ExpandEnvironmentStrings("%Windir%")
i = 1
Do While Not i > 32
oShell.Run strWinDir& "\IsUn0407.exe -f"""&strProgramFiles&"\IBM\Client Access\DeIsL"&i&".isu "" -a",0,True
i=i+1
Loop
oShell.Run strWinDir& "\IsUn0407.exe -f"""&strProgramFiles&"\IBM\Client Access\AFPViewr\DeIsL1.isu "" -a",0,True
oShell.Run strWinDir& "\IsUn0407.exe -f"""&strProgramFiles&"\IBM\Client Access\AFPViewr\DeIsL2.isu "" -a",0,True
oShell.Run strWinDir& "\IsUn0407.exe -f"""&strProgramFiles&"\IBM\Client Access\Emulator\DeIsL1.isu "" -a",0,True
oShell.Run strWinDir& "\IsUn0407.exe -f"""&strProgramFiles&"\IBM\Client Access\Emulator\DeIsL2.isu "" -a",0,True
oShell.Run strWinDir& "\IsUn0407.exe -f"""&strProgramFiles&"\IBM\Client Access\Emulator\DeIsL3.isu "" -a",0,True
oShell.Run strWinDir& "\IsUn0407.exe -f"""&strProgramFiles&"\IBM\Client Access\Emulator\DeIsL4.isu "" -a",0,True
'Programmverzeichnis löschen
If oFSO.FolderExists(strProgramFiles & "\IBM") Then
oFSO.DeleteFolder strProgramFiles & "\IBM"
End If
*snip*
Works fine...
Sebastian
Posted by:
sejacru
19 years ago
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.