Jump to content
Pulseway 9.14 🔥

Nexusphreez

Members
  • Joined

  • Last visited

Everything posted by Nexusphreez

  1. Something I have submitted before is in the mobile app, the ability for a technician to enter a time entry for a ticket is not very intuitive. it requires that the technician remember when they started, how long they were there and then create the time entry after they are finished with the service. it would be better if they could go in to the ticket, and just start a time entry, enter the title and then it tracks the time for them and then they would just come in when they are done and just stop the time entry and enter some notes. this removes the need for the technician to have to remember things like time started, duration they were there. is there a possibility to get this modified.
  2. So here is a script that I use and just set it up on a schedule. What it does is create a local and/or domain account with the specified user name and password. I can run it manually, on an individual system basis or through a workflow. The only minor drawback is that the password is listed in plain text. But my justification for this is that anyone internal to my organization is going to have access to this anyway. Its not visible to the client or anyone else. # Inputs $SetPassword = "Password Here" $SetUserName = "User Name Here" $group = "Administrators" $adsi = [ADSI]"WinNT://$env:COMPUTERNAME" $existing = $adsi.Children | where {$_.SchemaClassName -eq 'user' -and $_.Name -eq $SetUsername } if ($existing -eq $null) { & NET USER $SetUsername $SetPassword /add /y /expires:never & NET LOCALGROUP $group $SetUsername /add } else { $existing.SetPassword($SetPassword) } & WMIC USERACCOUNT WHERE "Name='$SetUsername'" SET PasswordExpires=FALSE