Contents tagged with command line
-
Change User Rights Assignment via Command Line
https://www.tenforums.com/tutorials/88118-change-user-rights-assignment-security-policy-settings-windows-10-a.html more
-
Modify Network Share Permission from Command Line using ICACLS
List files in local network share:
dir \\localhost\myshare
list permissions on share:
icacls \\localhost\myshare
allocate permissions to share:
icacls \\localhost\myshare /grant mydomain\ … more
-
Microsoft Azure Run Command (run command line or powershell from the Azure Portal)
In portal.azure.com:
1) select virtual machine
2) select Run Command
3) Choose one of the pre-written scripts (eg change rdp port, ipconfig etc)
-
Windows Firewall Enable and Disable via Command Line
This is how you do it using a command prompt:
To Turn Off:
NetSh Advfirewall set allprofiles state off
To Turn On:
NetSh Advfirewall set allprofiles state on
To check the status of Windows … more
-
Edit Windows Registry via Command Line
https://www.windowscentral.com/how-edit-registry-using-command-prompt-windows-10 more
-
Send Email Via Command Line
http://caspian.dotconf.net/menu/Software/SendEmail/ more
-
Oracle Discoverer Command Line Interface
https://docs.oracle.com/cd/E28280_01/bi.1111/b40108/ref.htm#BIDEU141 more
-
SVN Command Line Syntax
Basic Checkout:
svn checkout https://MySVNServer:MyPort/svn/MySVNRepositoryName/MyFolder1/MyFolder2 MySVNRepositoryName --username MyUsername
Basic Commit:
svn commit -m "My Comment For the … more