目前我在登录到 Windows 桌面期间使用这个 vbs 脚本:
Set oIE = CreateObject("InternetExplorer.Application") ' This creates a Internet Explorer window
oIE.Left = -5000 ' This allows the page to initilize off-screen
oIE.Top = -5000 ' This allows the page to initilize off-screen
oIE.navigate "http://myurl/?popup=1" ' This is URI
oIE.ToolBar = 0 ' This removes the toolbar
oIE.StatusBar = 1 ' This removes the status bar
oIE.Resizable = 1 ' This allows the maximise button
oIE.Visible = 1
这是从用户登录批处理文件运行的。
我被要求添加另一个,我不喜欢这种方法,但不知道如何实现它?
谢谢
更多细节
情况是它只需要为 Active Directory 中的某些用户运行 - 希望他们将在特定的 OU 中,如果他们不在,那么我会将它们放在那里!所以我的方法是从应用到组的登录脚本的角度出发——我不想使用 StartUp 文件夹或注册表,以便可以通过 Active Directory 轻松管理弹出屏幕的用户。希望这更有意义!