
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2008 07:44 PM
I am running a vbs script for my login script. I have the the script running however I get a popup indicating LSClient is unsigned. Does anyone know of a way to run this silent so that the users do not see a popup dialog?
Here is the script code line:
Here is the script code line:
Set WshNetwork = WScript.CreateObject("WScript.Network")
Set WshShell = WScript.CreateObject("WScript.Shell")
Set WshProcessEnvironment = WshShell.Environment("Process")
'''''''' LoginServer Var
LogonServer = WshProcessEnvironment("LogonServer")
WshShell.Run chr(34) & LogonServer & "\netlogon\lsclient.exe " & chr(34) & chr(34) & "10.0.0.17" & chr(34)
Labels:
- Labels:
-
Archive
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2008 05:33 PM
just a guess : Add your local active directory domain ("mydomain.local") to the list of trusted sites in internet explorer.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-11-2008 04:37 PM
This occurs on both vista and XP.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2008 10:00 PM
is this on vista or xp?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2008 09:45 PM
I tried that line. I still get a dialog box indicating "The publisher could not be varified. Are you sure you want to run this software?"

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-09-2008 08:36 PM
'*** lansweeper
if isworkstation then
WshShell.run logonserver &"\netlogon\lsclient.exe server",0
'",0" = windows is hidden
end if
