Skip to main content

All Questions

1 vote
0 answers
59 views

Moving an event log source is not having an effect

I'm having an issue that to be clear I'll describe in steps: I created an event source called Foo in the event log called Application using the following powershell command: New-EventLog -source Foo -...
rsalfonso's user avatar
3 votes
1 answer
9k views

Powershell to set default browser

I created a process using PowerShell to install Chrome. What I am looking to do now is to have PowerShell change the registry for the computer and change the default browser to Chrome. I would ...
Alcyeonnero's user avatar
2 votes
2 answers
4k views

Using powershell as default interpreter on Windows 10's SSHD?

When using the default Windows 10 sshd (SSH serv[er|ice] / daemon), how does one set it to login with powershell instead of cmd?
ylluminate's user avatar
  • 1,231
2 votes
1 answer
1k views

Can't start PowerShell 3.0 on windows 10

I'm having a very strange issue where powershell seems to hang on startup, but only on version 3: C:\WINDOWS\system32>powershell -version 2.0 Windows PowerShell Copyright (C) 2009 Microsoft ...
elRobbo's user avatar
  • 131
0 votes
2 answers
985 views

Version of MSI to use for SharePoint online management from PowerShell

The following KB article is a rather vague on which MSI to use in what circumstances: https://www.microsoft.com/en-gb/download/details.aspx?id=35588 There are obviously 32-bit and 64-bit versions. ...
munrobasher's user avatar
1 vote
2 answers
1k views

Get-CimInstance not working when run from Scheduled Task

I have a Powershell script that exports a list of all the services on my local computer using the following command: Get-CimInstance win32_service | Export-Csv $PSScriptRoot\Local\services.csv It ...
mwolfe02's user avatar
  • 455