Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Get-Contentパスの一部としてUNCパス$data変数を使用するにはどうすればよいですか?
$data = "\\MyServer\MyShare" $OU = Get-Content $data + "ou.txt" $OU
試す
$data = "\\MyServer\MyShare" $OU = Get-Content ( JOIN-PATH $data "ou.txt" )