Dag: 20 juni 2022

Create a PowerShell script. start PowerShell ( as administrator ) create directory : mkdir “name of te new directoy” cd “name of te new directoy” new-item Get-ADGroupMember-script.ps1 notepad.exe  Get-ADGroupMember-script.ps1 copy and paste the text in to the file:   ################################################################# $name = Read-Host ‘Enter the group you want to view the members of’ Get-ADGroupMember -Identity […]

Meer lezen

If the memory is to be upgraded, then you have to find out whether the new memory is compatible. Therefore you have to find out the type of your currently installed memory. The device manager does not provide any information about this.   Get-WmiObject   Get-WmiObject win32_physicalmemory | Format-Table Manufacturer,Banklabel,Configuredclockspeed,Devicelocator,Capacity,Serialnumber -autosize Get-CimInstance You can also […]

Meer lezen