Author

JohnyLuky

How to move the SQL tempDB database files

2014-11-04

Open SSMS (If you don’t know what is SSMS, you shouldn’t be doing this…) Paste and execute this query, modifying it to your needs USE master GO ALTER…

Duplicate a table in MySQL

2014-10-17

  Very simple! Log on to your MySQL instance, and select the DB you table is in; mysql> use mydatabase; Create the new table with the same structure…

Subnetting Chart

2014-10-12

  128 192 224 240 248 252 254 255 128 64 32 16 8 4 2 1 0-127 0-63 0-31 0-15 0-7 0-3 0-1 0 128-255 64-127 32-63…

Exchange Mailbox Export / Import Requests

2014-10-10

Before you create any Export or Import; review/modify the max values for Transport, Receive and Send PS C:\Set-TransportConfig -MaxSendSize 100MB -MaxReceiveSize 100MB PS C:\Get-ReceiveConnector | Set-ReceiveConnector -MaxMessageSize 100MB…

PowerShell – Remove all files from a folder

2014-10-10

This script will delte everyting in the “Script” folder, sub-folder, and the “-recurse” option will prevent the prompting of confirmation. The “-exclude” option alllows you to exclude files…

How to fix orphaned SQL Server users

2014-10-10

Make sure to run all listed commands from the database you are fixing, not from Master. List the orphaned users in the database EXEC sp_change_users_login 'Report' To assign/repair…

Remove Hidden Network Adapters

2014-10-10

1- Click Start, click Run, type cmd.exe, and then press ENTER. 2- Enter this command and then press ENTER: set devmgr_show_nonpresent_devices=1 3- Open Device Manager; Start DEVMGMT.MSC Click…

Install VMware Tools on any Debian Base OS

2013-12-02

In VMware, select your guest, and click “Install/Upgrade VMware Tools” Then go back in your VM, and issue all the following commands from terminal. mkdir -p /media/cdrom mount…