Peter said:
So, why can't I find it?...
Hi
Please try this:
1)
Run the following from Start\Run (the *exact* text):
%windir%\system32
2)
A new Explorer window should now open up, showing the content in
the system32 folder.
In the menu, select Tools\Folder Options, and then the View tab.
If necessary:
Select "Show hidden files and folders"
Unselect ""Hide extension for known file types"
Unselect "Hide protected operating system files
Press OK.
3)
Verify that the view is sorted by Name, and then go down the list
to you see msiexec.exe.
If you still cannot find the file, run the VBScript below to verify
the existence of the file in the folder c:\windows\system32\
Put it in a text file and save it as e.g. CheckFile.vbs, run it by
double clicking on it.
'--------------------8<----------------------
Set oFSO = CreateObject("Scripting.FileSystemObject")
' path to the Windows system32 folder
sWinSysDir = oFSO.GetSpecialFolder(1).Path
' file to look for
sFile = sWinSysDir & "\msiexec.exe"
If oFSO.FileExists(sFile) Then
MsgBox "msiexec.exe found in the folder " & sWinSysDir, _
vbExclamation + vbSystemModal, "File check"
Else
MsgBox "msiexec.exe NOT found in the folder " & sWinSysDir, _
vbExclamation + vbSystemModal, "File check"
End If
'--------------------8<----------------------