You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/examples
nathansoz f0004b1604 $powershellpath is called as ".$powershellpath"
$powershell path is set to "C:\powershell" at line 27. This is fine, but on line 82 $powershellpath is called as ".$powershellpath\$filename". Because the path at line 27 is absolute, a period preceding the $powershellpath is not required at 82. It actually causes an error:

Start-Process : This command cannot be executed due to the error: Unknown error (0x80041002).
At C:\users\Nathan Sosnovske\Documents\ps2to3.ps1:81 char:14

Start-Process <<<< -FilePath ".$powershellpath\$filename" -ArgumentList /quiet
CategoryInfo : InvalidOperation: (:) [Start-Process], InvalidOperationException
FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand
Removing the period on line 82 before $powershellpath fixes this error.
10 years ago
..
issues Update ISSUE_TEMPLATE.md 10 years ago
playbooks Wrong target for link? 11 years ago
scripts $powershellpath is called as ".$powershellpath" 10 years ago
DOCUMENTATION.yml Standardized on yml suffix, so fix this example content filename. 11 years ago
ansible.cfg Fix some copyrights, fix a misc test. 10 years ago
hosts Small change to previous patch, make ranges of hosts inclusive. 12 years ago