Connect to a share to get an admin connectionsLog a user off a machine * logoff sessionId /server:targetmachine<br /> |
Wednesday, 13 October 2010
Windows : More RDP-related commands
Posted by
Ook
at
07:24
0
comments
Tuesday, 5 October 2010
Sharepoint - Where is the data hidden
SELECT TOP 1000 [tp_ID] ,tp_author ,tp_version ,[datetime1]+8 x1 ,[datetime2]+7 x2 ,[datetime1] ,[datetime2] ,[nvarchar1] ,[nvarchar2] ,[nvarchar3] ,[nvarchar4] ,[nvarchar5] ,[nvarchar6] ,[nvarchar7] ,[datetime3] ,[datetime4] ,[datetime5] ,[int1] ,[int2] ,[int3] ,[int4] ,[int5] ,[int6] FROM [WSS_Content].[dbo].[AllUserData] where 1=1 --and tp_ListId = 'DA7307B0-4D77-4DEE-A347-D183BE27CCC3' and tp_DirName = 'hr/holidays/Lists/Absences' and nvarchar5 = 'IT Development' and tp_author = 51 and tp_ID = 709 order by datetime1 desc |
Posted by
Ook
at
04:31
0
comments
Thursday, 9 September 2010
Perl : One liner to find files less than an hour old in a dir
perl -e 'for ( glob "./*" ) { system "ls -l $_" if ( -M $_ <= (1/24) ) };' |
Posted by
Ook
at
05:40
0
comments
Tuesday, 7 September 2010
iTunes Error 9808
Itunes error -9808 logging into the iTunes Music Store In Internet Explorer, go up to Tools > Internet Options. Then go to the last tab, Advanced, and scroll down to the Security section. It is the fifth box down and make sure "Check for server certificate revocation (requires restart)" is unchecked. Then access the iTunes Store. |
Posted by
Ook
at
09:57
0
comments
Wednesday, 25 August 2010
Windows 7 : Show File types
|
Posted by
Ook
at
14:43
0
comments
Thursday, 19 August 2010
Oracle : Auditing object access in 9i
Peter Lawes added a comment - 19/Aug/10 11:40 AM
|
Posted by
Ook
at
03:40
0
comments
Labels: Oracle
Monday, 2 August 2010
Excel : Remove all hyperlinks
In the spreadsheet * Press Alt-F11 to open the VB macro editor * Select the required sheet * Enter the following macro code Sub ZapHyperlinks() Cells.Hyperlinks.Delete End Sub * Run the code - Green triangle or Menu->Run->Run Macro or F5 (possibly) * This should remove all hyperlinks in the entire sheet |
Posted by
Ook
at
06:24
0
comments
[ Show » ]
Peter Lawes
added a comment - 19/Aug/10
10:47 AM