0

好的,所以我正在使用 Fog 对一堆 PC 进行成像。我的老板是一个手动设置一切的坚持者,他甚至不让我使用打印服务器来管理打印机......

无论如何,长话短说,我通过编写一堆打印机安装脚本和一些其他小型监控和其他脚本取得了长足的进步。

所以现在归结为设置 IP 地址,通常必须将其设置为静态,而无需正常的 AD\DHCP ezmode。

所以我希望能对我一起编写的这个新脚本获得一些帮助。

这个剧本“应该”

  1. 读取它运行的主机名(工作!)
  2. 在网络共享上打开 Computerlist.csv(大部分工作)
  3. 解析 ComputerList.csv,寻找主机名(通常有效,但区分大小写)
  4. 获取主机名列出的信息,并设置变量(拉动时会松开 .'s)
  5. 使用这些变量来配置网络连接。(由于上述#4而有问题)

实际上,我很惊讶我无法在谷歌上搜索已经为此而构建的脚本。

到目前为止,这是我拼凑的东西,它似乎很接近,但我错过了一些错误,我只是无法解决。

option explicit

Dim WshShell
Dim ObjShell
Dim objSysInfo
Dim strComputerName
Dim strFile

Set WshShell = WScript.CreateObject("WScript.Shell")
If WScript.Arguments.length = 0 Then
Set ObjShell = CreateObject("Shell.Application")
ObjShell.ShellExecute "wscript.exe", """" & _
WScript.ScriptFullName & """" &_
" RunAsAdministrator", , "runas", 1
Else
end if 

'* Pulls Computer name and sets it to variable
Set objSysInfo = CreateObject( "WinNTSystemInfo" )
strComputerName = objSysInfo.ComputerName

'* Loop through CSV file, read entries, store them in an array
dim CONNECTION : set CONNECTION = CreateObject("ADODB.CONNECTION")
dim RECORDSET : set RECORDSET = CreateObject("ADODB.RECORDSET")

CONNECTION.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\carmichaels\e\PCSetup\IPchanger\;Extended Properties=""text;HDR=YES;FMT=Delimited"""

RECORDSET.Open "SELECT * FROM ComputerList.csv WHERE ComputerName = '" & strComputerName & "'", CONNECTION, 3, 3

' //// For testing \\\\
WScript.Echo RECORDSET.Source
' \\\\ For testing ////

if RECORDSET.EOF then
    WScript.Echo "Record not found"
    WScript.Quit
else
    dim strIPAddress : strIPAddress = RECORDSET("IPAddress") & ""
    dim strSubnetMask : strSubnetMask = RECORDSET("SubnetMask") & ""
    dim strGateway : strGateway = RECORDSET("Gateway") & ""
    dim intGatewayMetric : intGatewayMetric = 1
    dim strDns1 : strDns1 = RECORDSET("Dns1") & ""
    dim strDns2 : strDns2 = RECORDSET("Dns2") & ""
    dim strDns3 : strDns3 = RECORDSET("Dns3") & ""
    WScript.Echo strIPAddress
end if

'* Set IP address information stored in variables
Set objShell = WScript.CreateObject("Wscript.Shell")
objShell.Run "netsh interface ip set address name=""Local Area Connection"" static " & strIPAddress & " " & strSubnetMask & " " & strGateway & " " & intGatewayMetric, 0, True
objShell.Run "netsh interface ip set dns name=""Local Area Connection"" static "& strDns1, 0, True
objShell.Run "netsh interface ip add dns name=""Local Area Connection"" addr="& strDns2, 0, True
objShell.Run "netsh interface ip add dns name=""Local Area Connection"" addr="& strDns3, 0, True
Set objShell = Nothing

我的问题是当我运行这个脚本时,它声称第 28 行第 1 行无法打开文件(在 32 位机器上)。

在 64 位机器上,(我在 .bat [%windir%\SysWoW64\cscript \server\share\folder\folder\IPchanger.vbs] 中使用以下内容运行它) 它会运行,但 IP 地址缺少点. 前任。10.1.0.57 在我的测试窗口中显示为 10.1057,并且将无法再次运行声称文件已打开或锁定。

这是 CSV 文件

ComputerName,IPAddress,SubnetMask,Gateway,Dns1,Dns2,Dns3
CLONE2,10.1.0.57,255.255.255.0,10.1.0.1,10.1.0.18,10.1.0.13,10.1.0.12
4

1 回答 1

0

不知道您的文件打开错误,对我来说第 28 行是

Set objShell = WScript.CreateObject("Wscript.Shell")

但是为了避免点的问题,使用 Jet OLEDB 文本过滤器,您需要为 csv 定义一个 Schema.ini 文件。请参阅http://msdn.microsoft.com/en-us/library/windows/desktop/ms709353%28v=vs.85%29.aspx

我认为 Jet 假定您的 IP 是十进制数字,而不是文本。

于 2013-10-14T16:15:35.777 回答