Advanced Search
Search Results
428 total results found
Veeam MST Settings
Simplest to open an existing MST and edit fields as necessary to generate a new transform. Open Current Version of MSI using Orca "X:\Tier2\3 Software\Veeam_Deployment_v4.0.0.4914\Veeam_MSI\VAC.CommunicationAgent.x64.msi" Apply Transform ...
Remove from Domain
Cmd netdom remove RHSC-14-HVSRV01 /domain:RHSC.local POWERSHELL $cmpter = hostname netdom remove $cmpter /domain:$env:USERDOMAIN
CMD Line Admin
CMD Line as ADMINISTRATOR runas /user:%computername%\administrator cmd device manager start devmgmt.msc /b MSCONFIG Start msconfig Administrative CMD prompt with VISTA - click start - type: cmd - press the right-ctrl, right-shift...
Run Commands
In case you wanted to get a command line thrill today.... Useful RUN Commands To Access…. - Run Command Accessibility Controls - access.cpl Add Hardware Wizard - hdwwiz.cpl Add/Remove Programs - appwiz.cpl Administrative Tools - control admi...
CMD Line Registry Delete
September 14, 1999 05:14 PM How can I delete a registry value/key from the command line? bookmark reprints Email Print Comments Rating: (6) John Savill Windows IT Pro InstantDoc ID #14741 A. A. Us...
Registry Edit
REG ADD REG DELETE HKCR HKEY_CLASSES_ROOT HKCU HKEY_CURRENT_USER HKLM HKEY_LOCAL_MACHINE HKU HKEY_USERS HKCC HKEY_CURRENT_CONFIG Example of how...
Configure TCP/IP from the Command Prompt
Save current settings netsh -c interface dump > c:'location1.txt When you reach location #2, do the same thing, only keep the new settings to a different file: Set to DHCP (check name and make sure it is exact) netsh interface ip set address "Loc...
Choice Command
http://www.techrepublic.com/blog/window-on-windows/make-the-choice-command-work-for-you-even-in-windows-7/5234?tag=nl.e064 By Greg Shultz October 20, 2011, 8:29 AM PDT Takeaway: Use the batch-file command Choice to make your batch files interactive...
Hyper-V
netsh firewall set opmode disable Pasted from <http://www.wantmoore.com/archives/2007/02/20/disable-windows-firewall-via-command-line/> netsh advfirewall set allprofiles state off Pasted from <http://technet.microsoft.com/e...
Remote GPResult
Cmd line that can be ran remotely. gpresult /scope computer /v /user FKC\mpeak > %systemdrive%\Accent\gpresult.log gpresult /scope computer /v /user wilson.local\sshanley > %systemdrive%\Accent\gpresult.log gpresult /scope computer /v /user W...
Invalid H:\ Drive
You receive an "Error " error message when you try to install or remove a Microsoft program Symptoms When you try to install or remove any one of the products listed in the "Applies To" section, you may receive an error message that r...
Network Share Folder
net share Docs=E:\Documents /grant:everyone,FULL From <http://www.windows-commandline.com/list-create-delete-network-shares/>
Add user to Administrators Group
net localgroup administrators [username] /add From <http://superuser.com/questions/515175/create-admin-user-from-command-line> LT has auto function that will make an account a domain admin. This was tested and verified on a workgroup agent. ...
DNS Change Via CMD Line
First find the network name by using: netsh interface show interface You should see something like "Local Area Connection" To add a DNS server: netsh interface ipv4 add dnsserver "Ethernet" address=192.168.x.x index=1 To delete DNS: ...
Enable Remote Desktop Via Command Line
netsh advfirewall firewall set rule group="Network Discovery" new enable=yes netsh advfirewall firewall set rule group="Remote Desktop" new enable=yes
7zip Command Line
Archive 7za a -tzip C:\Accent\temp2\archive2.zip H:\Downloads\SUU_14.12.200.69.iso -v10m 7za - executable for 7Zip a - a...
Enable Script Execution
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned From <https://technet.microsoft.com/library/hh847748.aspx> Running this command should allow everything to run but just for the current session Set-ExecutionPolicy -Scope Process -Ex...
Remove Profile
If you have a corrupt profile in Windows 10 there are two easy ways to remove it and rebuild it: 1: REMOVE CORRUPT WINDOWS PROFILE USING GUI: CONTROL PANEL > SYSTEM AND SECURITY > SYSTEM > ADVANCED SYSTEM SETTINGS (from the menu on the LEFT) . Click...
Clear DFS Problems
Script Purge Temp Archive Bit Restart service and Check bandwidth Check DFS Checker event logs Replication State codes are as follow: 0: Uninitialized 1: Initialized 2: Initial Sync 3: Auto Recovery ...
DFS Does not Replicate Temporary Files
This will remove the background temp archive attribute Get-childitem "D:\Data" -recurse | ForEach-Object -process {if (($_.attributes -band 0x100) -eq 0x100) {$_.attributes = ($_.attributes -band 0xFEFF)}} There are some attributes that also will sto...