
andy0609
-
Posts
6 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Posts posted by andy0609
-
-
This would be amazing!! I would like to also +1 that feature
-
-
I know this topic is old but where you able to figure it out?
-
Can you please create a script to uninstall the agents? I would like to have it for when I am offboarding a user/company
-
I use this when I am onboarding a new client. Computers have been there and most people don't know/have their own admin password
Quote$Username = "ADMIN-USERNAME-HERE"
$Password = "ADMIN-PASSWORD-HERE"$group = "Administrators"
$adsi = [ADSI]"WinNT://$env:COMPUTERNAME"
$existing = $adsi.Children | where {$_.SchemaClassName -eq 'user' -and $_.Name -eq $Username }if ($existing -eq $null) {
Write-Host "Creating new local user $Username."
& NET USER $Username $Password /add /y /expires:never
Write-Host "Adding local user $Username to $group."
& NET LOCALGROUP $group $Username /add}
else {
Write-Host "Setting password for existing local user $Username."
$existing.SetPassword($Password)
}Write-Host "Ensuring password for $Username never expires."
& WMIC USERACCOUNT WHERE "Name='$Username'" SET PasswordExpires=FALSE
Onboarding a client process
in General
Posted
I am curious to know what you normally do to onboard a client i.e.
1. Install Pulseway on the computer
2. Create local admin account on computer
3. Push AV on computer
4. Run hardware/software inventory
5. Install specific applications
6. etc...