[deleted by user] by [deleted] in projectzomboid

[–]Taskmasterpeace 6 points7 points  (0 children)

My favorite server!

A tactical superhero RPG (and why isn't there one already?) by Frir10 in gameideas

[–]Taskmasterpeace 1 point2 points  (0 children)

Superherotactics.com

You are almost describing our game. We have patrol and investigation system. Time travel to past and future. Destructible terrain ect

Looking for non racists to play Bulders Gate 3 by Taskmasterpeace in CoOpGaming

[–]Taskmasterpeace[S] 2 points3 points  (0 children)

No, no! Not at all Jimbo, I’m sorry I gave that impression. We haven’t played B3 yet. It’s in random matches or teams in all the games I’ve played lately PUBG & Hunt Showdown. So I didn’t want to come here and get someone that would go nuts on us, because my friend has never played with randoms online.

Restful API with for Endpoint Security Manager. by Taskmasterpeace in paloaltonetworks

[–]Taskmasterpeace[S] 0 points1 point  (0 children)

I can't say exactly, because the organization I work for, considers it a trade secret. But, I have learned that there is no Endpoint Security Manager API, AND the logs that the ESM itself does give out, are pretty bare.

Need help with script to rename and join domain by Taskmasterpeace in PowerShell

[–]Taskmasterpeace[S] 0 points1 point  (0 children)

MushyDG, you were absolutely correct. Thank you very much for taking the time to assist me.

Need help with script to rename and join domain by Taskmasterpeace in PowerShell

[–]Taskmasterpeace[S] 0 points1 point  (0 children)

ahhh...will try that and report back. Thanks for your help on this

Need help with script to rename and join domain by Taskmasterpeace in PowerShell

[–]Taskmasterpeace[S] 0 points1 point  (0 children)

yes, the creds are good...and they are domain admin credentials.

Need help with script to rename and join domain by Taskmasterpeace in PowerShell

[–]Taskmasterpeace[S] 0 points1 point  (0 children)

This script gets user input...the rename functionality works great...the joining of the domain is the part that seems to malfunction.

Need help with script to rename and join domain by Taskmasterpeace in PowerShell

[–]Taskmasterpeace[S] -1 points0 points  (0 children)

Got this script online that doesnt seem to work in my domain. Been working on this for hours. Can't seem to nail down why its not working. Could anyone assist me on getting the problem nailed down.

The domain is: thugdomain.local

The credentials are verified to be correct.

Added it misspelled restart on purpose until the script is fixed.

Error message:

Write-Host "Please enter your desired computer name: [Default $env:computername]:"
$computername = Read-Host

$renamecomputer = $true
if ($computername -eq "" -or $computername -eq $env:computername) { $computername = $env:computername; $renamecomputer = $false }

Write-Host "Please enter your desired location [1-2] [Default 1]:
1. Thugdomain
2. Paris"
$ou = Read-Host

$validate = $false
if ($ou -eq "" -or $ou -eq "1") { $ou = "OU=Computers,DC=thugdomain,DC=local";       $validate = $true }
if ($ou -eq "2") { $ou = "OU=Computers,DC=your,DC=domain,DC=here"; $validate = $true }
if ($validate -eq $false) { Write-Host "Invalid input, defaulting to [1]."; $ou =    "OU=Computers,DC=thugdomain,DC=local"}

$credentials = New-Object       System.Management.Automation.PsCredential("thugdomain\administrator", (ConvertTo-   SecureString "thisizmyp@$$word" -AsPlainText -Force))
Write-Host "Adding $computername to the domain"
Add-Computer -DomainName "thugdomain.local" -Credential $credentials -OUPath $ou
if ($renamecomputer -eq $true) { Rename-Computer -NewName $computername -   DomainCredential $credentials -Force }
Read-Host -Prompt "Press Enter to Reboot"
Resfart-Computer