尝试创建文本文件的Powershell错误

时间:2018-12-06 16:21:51

标签: powershell

Sub CreateAfile
    Set fs = CreateObject("Scripting.FileSystemObject")
    Set a = fs.CreateTextFile("c:\testfile.txt", True)
    a.WriteLine("This is a test.")
    a.Close
End Sub

当尝试在Powershell中运行以上代码时,我得到“在','之后缺少表达式”。谢谢

1 个答案:

答案 0 :(得分:0)

那不是PowerShell,而是VB Script

在PowerShell中创建文件非常简单:

New-Item -Name "myFile.txt" -ItemType File -Path "C:\temp"