user1580348 Asked: 2020-01-05 05:08:55 +0800 CST2020-01-05 05:08:55 +0800 CST 2020-01-05 05:08:55 +0800 CST xcopy.exe 存在于每个 Windows 系统中吗? 772 我可以确定它xcopy.exe存在于每个 Windows 系统(7+)中并且总是可以在系统中找到它PATH(例如C:\windows\system32)吗? xcopy 2 个回答 Voted Best Answer guyhosuetreehouse 2020-01-05T05:26:20+08:002020-01-05T05:26:20+08:00 此 Powershell 脚本(需要以管理员身份运行)可用于检查xcopy网络服务器是否存在,如果不存在则从网络服务器复制它;如果路径不存在,它也会创建它。 $xcopypath = 'C:\Windows\System32\xcopy.exe' $xcopy = Test-Path $xcopypath $server = \\NAS\xcopy.exe $envpath = Get-ChildItem Env: $path = $envpath.Value if($xcopy){ write-host -ForegroundColor Green "xCopy present" }while($xcopy -ne 'True'){ write-host -ForegroundColor red "xCopy not present" Copy-Item $server -path C:\Windows\System32 $xcopy = Test-Path C:\Windows\System32\xcopy.exe } if($path.Contains('C:\Windows\system32\xcopy.exe')){ write-host -ForegroundColor Green "Path exists" }else{ write-host -ForegroundColor Yellow 'Path does not exist. Creating path' [Environment]::SetEnvironmentVariable("xCopy.exe", "$xcopypath", "Machine") } Ricardo Bohner 2020-01-05T05:34:56+08:002020-01-05T05:34:56+08:00 是的,它几乎存在于每个窗口中,不确定 win 95 和 98 但在其他窗口中它都存在。
此 Powershell 脚本(需要以管理员身份运行)可用于检查
xcopy
网络服务器是否存在,如果不存在则从网络服务器复制它;如果路径不存在,它也会创建它。是的,它几乎存在于每个窗口中,不确定 win 95 和 98 但在其他窗口中它都存在。