Powershell脚本,用于创建本地用户并将详细信息写入XML文件

时间:2014-05-06 11:15:09

标签: xml windows powershell

我已经创建了一个用于创建Windows本地用户及其FTP访问环境的小脚本。该脚本运行良好,但应将详细信息写入XML文件。该脚本一次只创建一个用户。它将用户名称存储在名为 $ accountName 的变量中, $ fullName 中的全名, $ password 中生成的密码, $ directoryPath 中的主目录以及变量 $ date 中的创建日期。 下面的代码有效,但每次都会使用上次创建的用户的详细信息覆盖该文件,而不会将其附加到XML文件中。

#Writing out details to XML file
Write-Host -fore yellow "Writing out details to XML..."

# create a template XML to hold data
$template = @'
<FtpUsers>
    <account>
        <accountName></accountName>
        <fullName></fullName>
        <password></password>
        <directoryPath></directoryPath>
        <date></date>
    </account>
</FtpUsers>
'@

$template | Out-File C:\ProgramData\InstanceLogFiles\FtpUsers.xml -encoding UTF8

# load template into XML object
$xml = New-Object xml
$xml.Load("C:\ProgramData\InstanceLogFiles\FtpUsers.xml")

# grab template user
$newuser = (@($xml.FtpUsers.account)[0]).Clone()

# use template to add local user accounts to xml 
$newuser = $newuser.clone()
$newuser.accountName = $accountName
$newuser.fullName = $fullName
$newuser.password = $password$newuser.directoryPath = $directoryPath
$newuser.date = $date
$xml.FtpUsers.AppendChild($newuser) > $null

# remove users with undefined name (remove template)
$xml.FtpUsers.account | 
Where-Object { $_.accountName -eq "" } | 
ForEach-Object  { [void]$xml.FtpUsers.RemoveChild($_) }

# save xml to file
$xml.Save("C:\ProgramData\InstanceLogFiles\FtpUsers.xml")
Write-Host -fore yellow "...Done!"

我看到&#34; $模板......&#34;部分每次都写入文件但是:

- 我试图使用&#34;使用模板......&#34;进入一个循环而没有成功。

- 我试图将模板写入单独的文件,但如果它不存在,则脚本会出错。

有人请帮我解决问题所在,我应该如何正确编码? 提前谢谢!

1 个答案:

答案 0 :(得分:0)

您可以尝试这样的事情:

根据c:\temp\ftpusers.xml包含的事实:

<?xml version="1.0" encoding="utf-8"?>
<FtpUsers>
</FtpUsers>

以下代码(您必须用您的vars替换硬编码字符串并创建一个函数arround:)

# Open Document
[xml]$xmlDoc = [xml](get-content "C:\temp\ftpusers.xml")

# Get our root node
$root = Select-Xml -Xml $xmlDoc -XPath "FtpUsers"

# Creation of a node and its text
$xmlElt = $xmlDoc.CreateElement("account")

# Creation of a sub node
$xmlSubElt1 = $xmlDoc.CreateElement("accountName")
$xmlSubText1 = $xmlDoc.CreateTextNode("user1")
$xmlSubElt1.AppendChild($xmlSubText1) | Out-Null
$xmlElt.AppendChild($xmlSubElt1) | Out-Null

$xmlSubElt2 = $xmlDoc.CreateElement("fullName")
$xmlSubText2 = $xmlDoc.CreateTextNode("Fullname user1")
$xmlSubElt2.AppendChild($xmlSubText2) | Out-Null
$xmlElt.AppendChild($xmlSubElt2) | Out-Null

$xmlSubElt3 = $xmlDoc.CreateElement("password")
$xmlSubText3 = $xmlDoc.CreateTextNode("password user1")
$xmlSubElt3.AppendChild($xmlSubText3) | Out-Null
$xmlElt.AppendChild($xmlSubElt3) | Out-Null

$xmlSubElt4 = $xmlDoc.CreateElement("directoryPath")
$xmlSubText4 = $xmlDoc.CreateTextNode("directoryPath user1")
$xmlSubElt4.AppendChild($xmlSubText4) | Out-Null
$xmlElt.AppendChild($xmlSubElt4) | Out-Null

$xmlSubElt5 = $xmlDoc.CreateElement("fullName")
$xmlSubText5 = $xmlDoc.CreateTextNode("12/05/2014")
$xmlSubElt5.AppendChild($xmlSubText5) | Out-Null
$xmlElt.AppendChild($xmlSubElt5) | Out-Null

# Add the node to the document
$root.Node.AppendChild($xmlElt) | Out-Null

# Store to a file 
$xmlDoc.Save("C:\temp\ftpusers.xml")

给出:

<?xml version="1.0" encoding="utf-8"?>
<FtpUsers>
  <account>
    <accountName>user1</accountName>
    <fullName>Fullname user1</fullName>
    <password>password user1</password>
    <directoryPath>directoryPath user1</directoryPath>
    <fullName>12/05/2014</fullName>
  </account>
</FtpUsers>