PowerShell脚本不接受$(美元)符号(PowerShell script not accep

2019-08-31 19:17发布

我尝试使用PowerShell脚本的SQL数据连接和我的密码包含$符号:

$cn = new-object system.data.SqlClient.SqlConnection("Data Source=DBNAME;Initial Catalog=Catagory;User ID=User;Password=pass$word;")

当我尝试打开一个连接,它说:

登录失败

Answer 1:

通过使用反引号(`)为美元符号($)的转义字符转义。

另外,尽量用单引号,而不是你现在使用的是双引号的声明。



文章来源: PowerShell script not accepting $ (dollar) sign