We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autologin feature doesn't seem to work. (Testing on vm, on super fresh windows, from bootstrapper)
$cred = Get-Credential $env:username Install-Boxstarterpackage -PackageName d:\a.txt -Credential $cred
a.txt is just
Disable-UAC if (Test-PendingReboot) { Invoke-Reboot }
this restarts and asks for password
The text was updated successfully, but these errors were encountered:
Apparently, this is the correct syntax for the credentials: Install-Boxstarterpackage -PackageName d:\a.txt -Credential (Get-Credential username)
Install-Boxstarterpackage -PackageName d:\a.txt -Credential (Get-Credential username)
This will create a pop-up prompt for username and password. Not sure if it will take the "$env:username" variable, would require testing.
EDIT: Using "$env:username: does work - it just prefills the username part of the pop-up with the current username logged onto the system:
Install-Boxstarterpackage -PackageName d:\a.txt -Credential (Get-Credential $env:username)
Sorry, something went wrong.
Duplicate of #318.
No branches or pull requests
Autologin feature doesn't seem to work. (Testing on vm, on super fresh windows, from bootstrapper)
a.txt is just
this restarts and asks for password
The text was updated successfully, but these errors were encountered: