Find the start up menu of a user on windows 7
It isn’t so obvious for administrators to find the start up folder of a user, when accessing a computer remotely on windows 7 This is the path you have to…
Terminal services manager and Windows 8
Terminal services manager does not exist in Windows 8. But fear not, the Remote Desktop Services Manager will do the trick. To actually enable the feature go to, “Programs and Features”, …
Change Security settings on Domain Controller to windows 2008
This is how to change the Security settings on Domain Controller to windows 2008 Click Start, click Run, type gpmc.msc, and then click OK. In the console tree, right-click Default Domain…
SQL Server 2008 issue with the execution of queries with order clause
There is a major issue in SQL server 2008 when running queries from views having the ORDER by clause. The outcome is with random order. Example. We create the…
SQL Server Convert String to Number
This is how to convert a string to number to an SQL Server sentence. SELECT CAST(YourVarcharCol AS INT) FROM Table examples Convert to Integer Select Cast(Customers.CodeId as Int) from Customers…