我有一个 PowerShell 脚本,可以在本地执行时从本地服务器运行另一个脚本,并在标准文本文件中生成结果。
但是,当我通过 Ansible Runbook 运行相同的脚本时,没有产生任何结果
PowerShell 脚本是 -
# RunCis.ps1
# Import DBA functions
# Construct local instance name and execute Getter script, format output and redirect to
# a text file on the local server
.\ImportAllLmeSqlDbaFunctions.ps1
$inst = (get-itemproperty 'HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server').InstalledInstances
$instance = "$env:COMPUTERNAME\$inst"
Get-CISAdHocDistQueries -Instances $instance| format-table -AutoSize > c:\cis\output.txt
Ansible Runbook 是-
---
# Below will create directory if not existing
- name: Copy Powershell scripts to remote server
copy:
src: cis
dest: c:\
- name: Run CIS powershell script on the remote server
win_shell: C:\cis\RunCis.ps1
非常感谢您的帮助。