-
RJ-45 Connector Wiring Diagram
I drew this diagram in 2006, and it is still a useful tool today if you attach RJ-45 connectors to cables yourself. A little detail… it was fully made in MS Paint 😉
-
Map a networkdrive with PowerShell
Step 1Press: [WIN] + [R]Typ: PowerShell or Press: [WIN]Typ: PowerShellClick: PowerShell Step 2Typ: new-PSDrive -Name “<driveletter>” -PSProvider “FileSystem” -Root “\\<servername>\<foldername>” -PersistPress: [ENTER] If you need to connect with credentialsTyp: $unpw = Get-CredentialPress: [ENTER]orClick: OK (PowerShell 5.x) Enter the Username and PasswordTyp: New-PSDrive -Name “<driveletter>” -PSProvider “FileSystem” -Root “\\<servername>\<foldername>” -Persist -Credential $unpwPress: [ENTER] View connected drives?…