Resolved! How can we pass the credentials in a secure way in Servicenow Powershell scripts .
Currently I am using this $user="xx_user"$pass = "xx_pass"$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $user, $pass))) tried this one too it still exposes where the file is ..$user="xx_user"$pass = Get-Co...