$ConfigFile = "C:\Outils\Config.ps1"
$Keys = Get-Content $ConfigFile | Foreach {($_ -split '\s-',4)[0..2]}
$Keys = Get-Content $ConfigFile | Foreach {($_ -split '=+',4)[0..2]}
ForEach($mot in $Keys)
{
if($mot.StartsWith("$"))
{
Write-host $mot
}
}
嗨,我制作了一个脚本来提取配置文件中变量的内容,而不是显示变量的内容,它只是显示变量的名称:
$infographie
$journaliste
$photopro
我的配置文件:
$infographie="\\uprlpv12\Asura$\OneVision\SORTIES\ILLUSTRATION_VERS_METHODE\INFOGRAPHIES_PROGRES"
$journaliste="C:\FTP\Journaliste"
$photopro="C:\FTP\PhotoPro"
谢谢