All Questions
Tagged with wmic powershell
5 questions
2
votes
1
answer
998
views
Running remote commands on Windows 10
Recently i was trying to research deeper into running remote commands from windows to windows. It can be easy with ssh, ftp - but I wanted it to run the commands without knowing the password either ...
0
votes
1
answer
2k
views
Get all hostnames in local DNS for current Windows server
I've deployed BGInfo from SysInternals to all of our servers, both physical and virtual. However, a few of our servers have multiple hostnames to support "backward compatibility" with some ...
0
votes
1
answer
1k
views
Remove TerminalServices SSLCertificateSHA1Hash
I would like to remove RDP certificate that I previously set through the command
wmic /namespace:\\root\cimv2\TerminalServices PATH Win32_TSGeneralSetting Set SSLCertificateSHA1Hash=$...
0
votes
1
answer
788
views
GWMI - Find out if Domain Controllers are physical or virtual via script
I have tried to create a script for extracting but the output is not quite I desired.
$Servers = Get-ADDomainController -Filter * | Select-Object Name
foreach($server in $servers)
{
$compsystem = ...
2
votes
1
answer
668
views
Nano Server - Move Pagefile
Update: I never found a way to move the pagefile and with Microsoft's pivot to make Nano container only I doubt there will ever be a way to do this.
I am trying to move the pagefile on a Windows ...