Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Wednesday, February 24, 2016

HP Data Protector - TSM Insufficient system resources exist to complete the requested service

Sample Error Log : ANS9999E ntrc.cpp(928): Received Win32 RC 1450 (0x000005aa) from FileRead(): ReadFile '\\xxxx\. Error description: Insufficient system resources exist to complete the requested service. Solution: >> Edit the dsm.opt file by adding the param...

Thursday, August 6, 2015

Saturday, June 13, 2015

Simple Shortcut to Use Hibernation

!-- google_ad_client = "ca-pub-5304359932439563"; /* in Post_giftvoucher */ google_ad_slot = "8723390135"; google_ad_width = 468; google_ad_height = 15; // --> Here's a Simple & quickie keyboard shortcut for those of you who like to put Windows XP into hibernation...

Wednesday, April 29, 2015

More than 100 Keyboard Shortcuts must Know

More than 100 Keyboard Shortcuts must Know:  We are sharing More than 100 Keyboard Shortcuts which must know for your regular computer Use. These short codes can help you to open many of regular use of key stokes with just short cut code. No need to navigate the process...

Monday, February 16, 2015

Wednesday, August 20, 2014

Top 13 Windows Key Shortcuts - CrazyTechGuys

We are gonna share Top 14 shortcuts utilize the Windows Key  which is located at the lower left hand corner and, the lower right hand corner of your keyboard between the Ctrl and Alt keys. If it is not there, then you do not have a Windows keyboard. Ctrl  Windows...

Thursday, July 24, 2014

Thursday, November 21, 2013

Monday, May 7, 2012

Windows 8 Consumer Preview (What's new)

It's Windows reimagined and reinvented from a solid core of Windows 7 speed and reliability. It's an all-new touch interface. It's a new Windows for new devices. And it's your chance to be one of the first to try it out. Get it nowDevelopersStart building apps now IT prosGet resources for businesses What's new  Swipe, slide, and zoomTouch...

Wednesday, February 8, 2012

Upgrade from Windows Server 2003 Domain Controller to Windows Server 2008

Introduction I have been using Windows Server 2003 for years and I believe its time to shift and try using Windows Server 2008, I have downloaded RC0 and decided to Upgrade my Domain Controller, which is also a DNS & DHCP Server to Windows Server 2008 Standard Edition RC0. In this article, I will show you step by step how to perform an in-place upgrade for a Domain Controller...

Friday, October 7, 2011

Wednesday, September 14, 2011

How to install Windows Server 2008 without activating it and extend the evaluation period

How to install Windows Server 2008 without activating itRun the Windows Server 2008 Setup program. When you are prompted to enter a product key for activation, do not enter a key. Click No when Setup asks you to confirm your selection. You may be prompted to select the...

Monday, July 25, 2011

Monday, July 4, 2011

Import a Large Text File

Imports a text file into Excel even if the number of lines in that file exceeds Excel's total number of rows limitation. Visual Basic'       This script was written for folks trying to import a text file into   '       Excel 2003 that exceed the row limitations.   '       This version works on Windows XP and has not been tested on any other OS.     Const ForReading = 1   Const ForAppending = 2     Set objDialog = CreateObject("UserAccounts.CommonDialog")     objDialog.Filter = "All Files|*.*"   objDialog.InitialDir = "C:\"   intResult = objDialog.ShowOpen       If intResult = 0 Then       Wscript.Quit   Else       BreakFile =  objDialog.FileName   End If     Set objFSO = CreateObject("Scripting.FileSystemObject")   Set objFile = objFSO.OpenTextFile(BreakFile, ForReading)     FiletoSplit = objFSO.GetFileName(BreakFile)   FolderDest = Mid(objFSO.GetAbsolutePathName(BreakFile),1, _      Len(objFSO.GetAbsolutePathName(BreakFile))-(Len(FiletoSplit)))   FileSplitName = objFSO.GetBaseName(BreakFile)         dtmStart = Now()   strContents = objFile.ReadAll   FileNum = 1   fname =  FolderDest & FileSplitName & "Split_" & FileNum & ".txt"   Set objFile1 = objFSO.OpenTextFile(fname, ForAppending, True)         CountLines = 0   arrLines = Split(strContents, vbCrLf)     If ubound(arrLines) < 64500 Then           msgbox "This file will fit into Excel already.  No split is necessary.",48,"SplitFile"           Wscript.Quit   End If             HeaderText = arrLines(0)                   For i = 0 to ubound(arrlines)                                             strLine = arrLines(i) & vbCrLf                                            objFile1.Write strLine                                            If  (Countlines) < 64500  Then                                                            countlines = countlines + 1                                               ElseIf Countlines >= 64500 Then                                   objFile1.Close                                   Countlines = 0                                                            FileNum = FileNum + 1                                   fname = FolderDest & FileSplitName & "Split_" & FileNum & ".txt"                                   Set objFile1 = objFSO.OpenTextFile(fname, ForAppending, True)                                   objFile1.Write HeaderText & vbCrLf                                                        End If                    Next                objFile.Close   dtmEnd = Now()   If MsgBox("There were " & FileNum & " files created." & vbcrlf & _           "The files were put into this folder:  " & FolderDest & _           vbCrLf & "The script took " & DateDiff("s", dtmStart, dtmEnd) & " seconds " & _           "to break the " &  FiletoSplit & " file." & vbcrlf & vbcrLF & _           "Click OK to open destination folder or CANCEL to quit.",  _           1,"SplitFile") = vbOK Then           Set objShell = CreateObject("Shell.Application")           strPath = FolderDest             objShell.Explore strPath   End If   Verified...