Microsoft Remote Server Administration Tools enables IT administrators to remotely manage roles and features in Windows Server 2008 from a computer running Windows Vista or Windows 7. It includes support for remote management of computers running either a Server Core installation or the full installation option of Windows Server 2008. It provides same functionality to Windows Server 2003 Administration Tools Pack
[Read more…]
Secure Cisco devices
Some cisco basic command to secure your device against logins.
You should execute this command always on your routers/switches.
Don´t forget to replace the “cisco” password!
Set a console password to cisco:
1 2 3 | Router(config)#line con 0 Router(config-line)#login Router(config-line)#password cisco |
Set a telnet password:
1 2 3 | Router(config)#line vty 0 4 Router(config-line)#login Router(config-line)#password cisco |
Stop console timing out:
1 2 | Router(config)#line con 0 Router(config-line)#exec-timeout 0 0 |
Set the enable password to cisco:
1 2 3 4 | Router(config)#enable password cisco Router(config)#enable secret class # No Plain-Text passwords more Router(config)#service password-encryption |
‘Argument list too long’
root@web2:$ rm pe-warn-*.bz2
-bash: /bin/rm: Argument list too long
This peoblem happens when you are trying to delete too many files in a directory at the same time – it seems rm has special limits …
To solve the problem:
Use:
1 | find . -name 'pe-warn-*.bz2' | xargs rm |
or
1 | find . -name "pe-warn-*.bz2" -delete |
GPO to attach public share
for example in your office you have different departments (IT, Sell… ) Each of that departments has their own Space on a server and they must be attached on logon.
1. You create a new GPO
2. Edit the new GPO
3. Choose User Configuration
4. Windows Settings
5. Scripts(Logon/Logoff)
6. Logon -> Add a new Script that will connect the drive
1 | net use z: \\w2k8dc01\PUBLIC-SHARE |
z: is the drive letter (should be free!)
Windows 2008R2 System Requirements
- « Previous Page
- 1
- …
- 59
- 60
- 61
- 62
- 63
- …
- 74
- Next Page »