Hello
I apologise for asking a silly question before I ask it.
I have a bit of script, and what I am trying to do is open Internet explorer and input a computername in the address bar, so I can use this as an option to search a users drive. Unfortunatley explorer.exe does not work as it is disabled by group policy, I have a bit of code that I have removed from here but all it does is RunAs.
Is it possible for me to open IE with the computername in the address bar
Thanks in advance
Dim WshSHell
Dim AssetNo
AssetNo=Inputbox ("Asset Number")
set WshSHell = createobject ("wscript.shell")
WshSHell.Run("iexplore.exe " &AssetNo&"")
I apologise for asking a silly question before I ask it.
I have a bit of script, and what I am trying to do is open Internet explorer and input a computername in the address bar, so I can use this as an option to search a users drive. Unfortunatley explorer.exe does not work as it is disabled by group policy, I have a bit of code that I have removed from here but all it does is RunAs.
Is it possible for me to open IE with the computername in the address bar
Thanks in advance
Dim WshSHell
Dim AssetNo
AssetNo=Inputbox ("Asset Number")
set WshSHell = createobject ("wscript.shell")
WshSHell.Run("iexplore.exe " &AssetNo&"")