8

I have a very simple power shell script that will register console applications as daily scheduled tasks.

$TaskCommand = Read-Host 'Enter the path to the console application'
$TaskName = "TaskName"
$TaskStartTime = "10PM"
$TaskArg = "-WindowStyle Hidden -NonInteractive -Executionpolicy unrestricted"

$TaskAction = New-ScheduledTaskAction -Execute "$TaskCommand" -Argument "$TaskArg"
$TaskTrigger = New-ScheduledTaskTrigger -At $TaskStartTime -Daily
Register-ScheduledTask -Action $TaskAction -Trigger $TaskTrigger -TaskName "$TaskName" -User %computername%\theusername -Password "password" -RunLevel Highest

The application reads the file path from user input and attempts to register the application as a task using a specific user account. I can get the script working by using

-User "System"

However when I try to use the above script I get this error:

Register-ScheduledTask: No mapping between account names and security IDs was done.

I have ensured that the account exists as it is currently running several services. I am also new to powershell so have tried adding quotations around the username with no luck.

halfer
  • 19,824
  • 17
  • 99
  • 186
jjharrison
  • 841
  • 4
  • 19
  • 33

2 Answers2

8

Don't think PowerShell recognises %computername%. Have a look at environment variables here.

$env:USERNAME, $env:USERDOMAIN $env:COMPUTERNAME look relevant to your task.

G42
  • 9,791
  • 2
  • 19
  • 34
1

For me, it was an issue of having trailing spaces where the variables were stored. Unrelated to the question at hand, but perhaps a sanity-check worth pursuing for others who reads this.

halfer
  • 19,824
  • 17
  • 99
  • 186
Morten Nørgaard
  • 2,609
  • 2
  • 24
  • 24