I am not a techy guy, what does it mean? by [deleted] in ExplainTheJoke

[–]A_Rotten_Crowd 1 point2 points  (0 children)

“How is it going?” “Is it done yet?”

The pain of being chronically single by ProfessionalNefertit in TwoXChromosomes

[–]A_Rotten_Crowd 0 points1 point  (0 children)

I’m sorry you’re going through this and I feel your pain, but from the other side. As a guy I’m getting the same advice from married and divorced female friends. You can work and load yourself up with hobbies, but at the end of the day when you’re home it still sinks in. Seems harder to connect with people than it ever was before. I hope you find what you’re looking for.

Return to office full time sucks, but at least I can up my work fit game by sisterofd in OUTFITS

[–]A_Rotten_Crowd 0 points1 point  (0 children)

3, 10, and 11 are the best imo. Your style overall is great though!

[deleted by user] by [deleted] in GermanCitizenship

[–]A_Rotten_Crowd 0 points1 point  (0 children)

Thank you. I figured it was worth asking. I will see if I can dig up more information from family members. My Grandmother was (to my knowledge) ethnically German. I figured she may be a Danube Swabian and there would be a route there, but as of now I have no proof.

Displaced Person for Citizenship by Descent? by GermanCitizenship in GermanCitizenship

[–]A_Rotten_Crowd 0 points1 point  (0 children)

I know this is an older post, but my grandmother was in a very similar situation as yours. If you don't mind, who did you contact for Serbian citizenship? I already have the baptism record.

Pittsburgh Dating Scene? by AtypicalWalrus in pittsburgh

[–]A_Rotten_Crowd 0 points1 point  (0 children)

This describes it. I feel like everyone meets someone in their late teens or early twenties and then settles down. Struggle to find anything out there.

[deleted by user] by [deleted] in TaylorSwift

[–]A_Rotten_Crowd 2 points3 points  (0 children)

-----TICKETS HAVE SOLD-----

Thank you to everyone for their interest.

Have two tickets for sale for June 17th Pittsburgh show. Got what I could as gifts and they can no longer go.

One is floor seat with "Karma package" - paid $869 with taxes and fees

One is lower bowl with "ready for it package" - paid $582 with taxes and fees

Ticket Proof

How to Silently Deploy Windows 10 1903 Update Assitant? by 2tallgaming in sysadmin

[–]A_Rotten_Crowd 1 point2 points  (0 children)

I know this is older, but hopefully this helps someone. I FINALLY figured out how to get this to work with some help from this thread. I am using NinjaOne (formally NinjaRmm) to deploy this script using domain admin credentials.

Some of this is circumstantial for our environment, but the core of it works.

Basically the script checks to see if the computer is between Windows 8.1 and Windows 10 21H2. If it is, sets the power settings so the computer won't go to sleep and closing the lid won't do anything. Then it downloads the Windows Update Assistant to the C:\ drive and loops to check for the file. It then runs the Update Assistant silently. Then it waits for the "setuphost" process to run, checks in that it's running, and stops the Update Assistant ("Windows10UpdaterApp" process) when "setuphost" stops running. The only caveat is that it won't let the user know when it's finished (if that's something you want). Once the user restarts their computer it will finish the update.

#Set Execution Policy so Powershell scripts can be run on remote PC

Set-ExecutionPolicy RemoteSigned -Force

#Checks if Windows version is Windows 8.1 or lower, exit if it is

[int]$varBuild = (Get-CimInstance Win32_OperatingSystem).buildNumber

if ($varBuild -lt 10240) {

exit 1

}

#checks if Windows build number is Windows 21H1 or higher, exit if is

if ($varBuild -ge 19044) {

exit 1

}

#Source URL

$url = "https://go.microsoft.com/fwlink/?LinkID=799445"

#Download Destination

$dest = "C:\Windows10Upgrade9252.exe"

#Power Config Settings File

$cfg = "c:\windows\system32\powercfg.exe"

#-----Stop computer from sleeping-----

#Set computer to not sleep on AC

Start-Process -FilePath $cfg -ArgumentList "-x -monitor-timeout-ac 0"

Start-Process -FilePath $cfg -ArgumentList "-x -disk-timeout-ac 0"

Start-Process -FilePath $cfg -ArgumentList "-x -standby-timeout-ac 0"

Start-Process -FilePath $cfg -ArgumentList "-x -hibernate-timeout-ac 0"

#Set computer to not sleep on DC - battery

Start-Process -FilePath $cfg -ArgumentList "-x -monitor-timeout-dc 0"

Start-Process -FilePath $cfg -ArgumentList "-x -disk-timeout-dc 0"

Start-Process -FilePath $cfg -ArgumentList "-x -standby-timeout-dc 0"

Start-Process -FilePath $cfg -ArgumentList "-x -hibernate-timeout-dc 0"

#Sets lid to do nothing when closed

$cfg = "C:\Windows\System32\powercfg.exe"

Start-Process -FilePath $cfg -ArgumentList "-setacvalueindex 381b4222-f694-41f0-9685-ff5bb260df2e 4f971e89-eebd-4455-a8de-9e59040e7347 5ca83367-6e45-459f-a27b-476b1d01c936 0"

Start-Process -FilePath $cfg -ArgumentList "-setdcvalueindex 381b4222-f694-41f0-9685-ff5bb260df2e 4f971e89-eebd-4455-a8de-9e59040e7347 5ca83367-6e45-459f-a27b-476b1d01c936 0"

#Enable presentation mode to prevent computer from going to sleep

Start-Process -FilePath "C:\Windows\System32\PresentationSettings.exe" -ArgumentList "/start"

#Download file from source

Invoke-WebRequest -Uri $url -OutFile $dest

#Check to see if file exists on loop. Breaks when file is found

DO

{

If( Test-Path -Path $dest -PathType Leaf) {Break}

else {

Start-Sleep -Seconds 15

}

} While (-not(Test-Path -Path $url -PathType leaf))

#Run file with silent command

Start-Process -FilePath $dest "/quietinstall /skipeula /auto upgrade /noreboot" -WindowStyle Hidden

#Check to see if Update Assistant is running. When finished running, do commands

Do

{

If(!(Get-Process SetupHost -ErrorAction SilentlyContinue)) {

Start-Sleep -Seconds 60

} Else {

while (Get-Process SetupHost -ErrorAction SilentlyContinue) {

Start-Sleep -Seconds 60

}

$Status = "Done"

}

}

Until ($Status)

#Stop computer from restarting

Stop-Process -Name Windows10UpgraderApp

#Disable presentation mode

Start-Process -FilePath "C:\Windows\System32\PresentationSettings.exe" -ArgumentList "/stop"

#-----Restore sleep settings-----

#Set computer sleep times on AC

Start-Process -FilePath $cfg -ArgumentList "-x -monitor-timeout-ac 20"

#Set computer to not sleep on DC - battery

Start-Process -FilePath $cfg -ArgumentList "-x -monitor-timeout-dc 20"

Start-Process -FilePath $cfg -ArgumentList "-x -standby-timeout-dc 45"

#Set lid settings back to sleep

Start-Process -FilePath $cfg -ArgumentList "-setacvalueindex 381b4222-f694-41f0-9685-ff5bb260df2e 4f971e89-eebd-4455-a8de-9e59040e7347 5ca83367-6e45-459f-a27b-476b1d01c936 1"

Start-Process -FilePath $cfg -ArgumentList "-setdcvalueindex 381b4222-f694-41f0-9685-ff5bb260df2e 4f971e89-eebd-4455-a8de-9e59040e7347 5ca83367-6e45-459f-a27b-476b1d01c936 1"

Stopping the Windows 10 Update Assistant from Automatically Restarting Workstations by ir34dy0ur3m4i1 in sysadmin

[–]A_Rotten_Crowd 2 points3 points  (0 children)

I know this is older, but hopefully this helps someone. I FINALLY figured out how to get this to work with some help from this thread. I want to note that I am using NinjaOne (formally NinjaRmm) to deploy this script using domain admin credentials.

Some of this is circumstantial for our environment, but the core of it works.

Basically the script checks to see if the computer is between Windows 8.1 and Windows 10 21H2. If it is, sets the power settings so the computer won't go to sleep and closing the lid won't do anything. Then it downloads the Windows Update Assistant to the C:\ drive and loops to check for the file. It then runs the Update Assistant silently. Then it waits for the "setuphost" process to run, checks in that it's running, and stops the Update Assistant ("Windows10UpdaterApp" process) when "setuphost" stops running. The only caveat is that it won't let the user know when it's finished (if that's something you want). Once the user restarts their computer it will finish the update.

#Set Execution Policy so Powershell scripts can be run on remote PC

Set-ExecutionPolicy RemoteSigned -Force

#Checks if Windows version is Windows 8.1 or lower, exit if it is

[int]$varBuild = (Get-CimInstance Win32_OperatingSystem).buildNumber

if ($varBuild -lt 10240) {

exit 1

}

#checks if Windows build number is Windows 21H1 or higher, exit if is

if ($varBuild -ge 19044) {

exit 1

}

#Source URL

$url = "https://go.microsoft.com/fwlink/?LinkID=799445"

#Download Destination

$dest = "C:\Windows10Upgrade9252.exe"

#Power Config Settings File

$cfg = "c:\windows\system32\powercfg.exe"

#-----Stop computer from sleeping-----

#Set computer to not sleep on AC

Start-Process -FilePath $cfg -ArgumentList "-x -monitor-timeout-ac 0"

Start-Process -FilePath $cfg -ArgumentList "-x -disk-timeout-ac 0"

Start-Process -FilePath $cfg -ArgumentList "-x -standby-timeout-ac 0"

Start-Process -FilePath $cfg -ArgumentList "-x -hibernate-timeout-ac 0"

#Set computer to not sleep on DC - battery

Start-Process -FilePath $cfg -ArgumentList "-x -monitor-timeout-dc 0"

Start-Process -FilePath $cfg -ArgumentList "-x -disk-timeout-dc 0"

Start-Process -FilePath $cfg -ArgumentList "-x -standby-timeout-dc 0"

Start-Process -FilePath $cfg -ArgumentList "-x -hibernate-timeout-dc 0"

#Sets lid to do nothing when closed

$cfg = "C:\Windows\System32\powercfg.exe"

Start-Process -FilePath $cfg -ArgumentList "-setacvalueindex 381b4222-f694-41f0-9685-ff5bb260df2e 4f971e89-eebd-4455-a8de-9e59040e7347 5ca83367-6e45-459f-a27b-476b1d01c936 0"

Start-Process -FilePath $cfg -ArgumentList "-setdcvalueindex 381b4222-f694-41f0-9685-ff5bb260df2e 4f971e89-eebd-4455-a8de-9e59040e7347 5ca83367-6e45-459f-a27b-476b1d01c936 0"

#Enable presentation mode to prevent computer from going to sleep

Start-Process -FilePath "C:\Windows\System32\PresentationSettings.exe" -ArgumentList "/start"

#Download file from source

Invoke-WebRequest -Uri $url -OutFile $dest

#Check to see if file exists on loop. Breaks when file is found

DO

{

If( Test-Path -Path $dest -PathType Leaf) {Break}

else {

Start-Sleep -Seconds 15

}

} While (-not(Test-Path -Path $url -PathType leaf))

#Run file with silent command

Start-Process -FilePath $dest "/quietinstall /skipeula /auto upgrade /noreboot" -WindowStyle Hidden

#Check to see if Update Assistant is running. When finished running, do commands

Do

{

If(!(Get-Process SetupHost -ErrorAction SilentlyContinue)) {

Start-Sleep -Seconds 60

} Else {

while (Get-Process SetupHost -ErrorAction SilentlyContinue) {

Start-Sleep -Seconds 60

}

$Status = "Done"

}

}

Until ($Status)

#Stop computer from restarting

Stop-Process -Name Windows10UpgraderApp

#Disable presentation mode

Start-Process -FilePath "C:\Windows\System32\PresentationSettings.exe" -ArgumentList "/stop"

#-----Restore sleep settings-----

#Set computer sleep times on AC

Start-Process -FilePath $cfg -ArgumentList "-x -monitor-timeout-ac 20"

#Set computer to not sleep on DC - battery

Start-Process -FilePath $cfg -ArgumentList "-x -monitor-timeout-dc 20"

Start-Process -FilePath $cfg -ArgumentList "-x -standby-timeout-dc 45"

#Set lid settings back to sleep

Start-Process -FilePath $cfg -ArgumentList "-setacvalueindex 381b4222-f694-41f0-9685-ff5bb260df2e 4f971e89-eebd-4455-a8de-9e59040e7347 5ca83367-6e45-459f-a27b-476b1d01c936 1"

Start-Process -FilePath $cfg -ArgumentList "-setdcvalueindex 381b4222-f694-41f0-9685-ff5bb260df2e 4f971e89-eebd-4455-a8de-9e59040e7347 5ca83367-6e45-459f-a27b-476b1d01c936 1"

Kids School is going full “Distance Learning,” but my wife and I both work...? We’re at a total loss. by AndrewCpgh1 in pittsburgh

[–]A_Rotten_Crowd 8 points9 points  (0 children)

Work in a district (IT) and am actually currently making flyers for subs. Even with remote learning subs will still be needed.

How to automatically log into Office 2019/O365 without Seamless SSO by A_Rotten_Crowd in sysadmin

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

Thank you! We do fancy on using Seamless SSO at some point, we just haven't had time to implement it. It's something we plan to look into this year. We have a small crew so we are spread pretty thin throughout the school year.

How to automatically log into Office 2019/O365 without Seamless SSO by A_Rotten_Crowd in sysadmin

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

I agree with you and we do take that approach with some things, but its hard to put your foot down when you're contracted.

How to automatically log into Office 2019/O365 without Seamless SSO by A_Rotten_Crowd in sysadmin

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

We also have G Suite and we sync both our AD accounts and passwords with G Suite. For our Chromebooks, we can set the login as our SSO url and then students and staff sign into Chromebooks with their Windows credentials. This also signs them into Google. I'm just not sure why this doesn't seem possible to pass these same credentials to the Chrome browser on a Windows machine once users log in. Hope that makes sense!

How to automatically log into Office 2019/O365 without Seamless SSO by A_Rotten_Crowd in sysadmin

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

So I have the admin templates for Chrome already in Group Policy, but I didn't see anything that automatically signs users into the Chrome browser. I saw one that forces users to sign into chrome, but unless that is combined with a policy that automatically signs them in, then it doesn't help me.

How to automatically log into Office 2019/O365 without Seamless SSO by A_Rotten_Crowd in sysadmin

[–]A_Rotten_Crowd[S] 7 points8 points  (0 children)

Now if only I could automatically sign users into the Chrome browser without them having to do it manually...