Author: Computing Staff

In order to post on Computing.Net’s forums, you must enter your Exact OS and CPU type and RAM amount. If you are using Windows, you can get this information rather easily. Use the following procedure to determine your system credentials. N.B. When posting on a forum, be as specific as possible. For example, when posting on the Windows XP forum, do not just write “Windows XP” as your OS. Instead write something like “Windows XP Home SP1.” Step one. Right click on the My Computer icon on your desktop and select properties. Alternatively, you can go to start/settings/control panels/system. Step…

Read More

Is your computer a little on the slow side when loading up programs? Well the reason for this is because hard disks are really slow compared to every other part in the computer. Whenever you load a program, it is always going to do accesses off the hard disk and this is what slows everything down. Well what if it was possible to tell Windows 95 and 98 (note: Windows NT already has this feature built in) to buffer a lot more data in RAM then it currently does? Well it is. Windows 95 and 98 have this feature in…

Read More

Dual Booting Windows NT and Linux is not very hard at all. All that it requires is a special utility called BOOT.EXE and a little know-how about the Windows NT boot manager. It is extraordinarily easy to setup Linux to boot with Windows NT and use the Linux boot manager instead of the Windows NT boot manager. However, most people only want to have to go through one boot manager when they start up their computer. Before you proceed you will need the following BOOT.EXE, a Red Hat Linux CD (I’m sure the procedure isn’t much different for other Linux flavors…

Read More

To display contacts in your Microsoft Outlook Address Book, follow the procedure outlined below. Close Outlook Right Click on the Outlook Icon Properties Email Accounts Under Directory View or Change existing directories or address books Next Click on Outlook Address Book Remove Finish Close Open Outlook Close Outlook Right Click Outlook Icon Properties Email Accounts Directory Add a new directory or address book Next Additional Address Books Next Select Outlook Address Book Next Okay Close Open Microsoft Outlook Right Click on Contacts Properties Outlook Address Book Tab Check the box that reads “Show this folder as an email address book”…

Read More

Have you ever been on the modem and had a download interrupted because your modem died when call waiting “beeped” in? Well disabling call waiting is very easy to do and it will only last for the duration of the time that you are connected to the Internet. Before you proceed you should note that disabling call waiting will result in a caller receiving a busy signal when they call your house if you are on the Internet. This How To assumes that your telephone provider uses the code *70 to disable call waiting but this may not be the…

Read More

Performing defragmentation in EDB files makes the used storage closest, minimizes unused storage and compacts the database that ultimately reduces the size of the database. Eseutil copies database records to a new database. When defragmentation process completes, the original database is deleted or saved at a desired location, and the new version is renamed as the original. You can use Eseutil to defrag the EDB database, by following the steps given below: Step 1. In Exchange System Manager, right-click the Information store that you wish to defragment and then click the Dismount Store option Step 2.In the command prompt, change…

Read More

Single Stepping and Watches are 2 very powerful tools to use when writing and debugging code. Lesson 1 – Single Stepping – Open the VBA editor (Alt-F11,  or right-click a sheet tab and choose View Code) – Place the cursor anywhere within the code. – Hit F8 to begin Single Stepping through the code. The next line to be executed will be highlighted, and execution will take place the next time you hit F8. You can make changes to the code while in Single Step mode. Some changes will alert you that the Debugger will stop if you make that…

Read More

Well, you’ve finally decided to buy a graphics card. Excellent decision. A graphics card takes some of the load off of the CPU by rendering the graphics on its own. If you are a gamer or a media-heavy user, this will speed things up for you, and make the whole computing experience more pleasant. But enough on that, you have questions, such as: What brand should I buy/ What kind should I get? How much is too much to spend? What do I look for in an ATi/AMD graphics card? What do I look for in an Nvidia graphics card?…

Read More

‘Simple commandline calculator, but handy to have around (batch math is feeble) ‘(a “front-end” to vbscript “eval”, this can be used by batch to obtain accurate ‘and somewhat sophisticated math operations by sending arugments out to it: ‘for /f “tokens=*” %%a in (‘cscript /nologo %1 %test’) do set result=%%a) ‘To use (example): cscript /nologo calcit.vbs ((172+6)*3) * 2^8/34 mod 4 ‘(note modulo is “mod”, not “%”) ‘or another, demonstrating fractions: 12.7 / .22 ‘Also supports “interactive” mode, with running total: cscript calcit.vbs ’86 * 76 [enter] ‘+4 [enter] ‘/22 [enter] ‘mod 8 [enter] ‘[enter] (gets the final result and quits).…

Read More

I have tried this method and seems to work fine with some hit or misses. You need to to the exact same video with same quality to get to the cached version. I will be using tmg 2010. First go to firewall policy in left pane. Then in right pane you’ll see domain name sets. expand it and go to new domain name set. You will see a box appear type next to name and under domain names included in this set click add. Type *.youtube.com in the new box that appears. Then go to web access policy in left…

Read More

Don’t copy yet,       Make sure when you copy this down, add it as Movement.bat and make sure you use the W key to move the character ( [} ) Up and press the S key to go down!!! Have fun with this Copy the script at @echo off: @setlocal enableextensions enabledelayedexpansion @echo off color 0a set length= set height= a  :var cls echo. for %%a in ( %height% ) do echo. echo [} choice /c wasd /n if %errorlevel% equ 1 call:up if %errorlevel% equ 2 call:left if %errorlevel% equ 3 call:down if %errorlevel% equ 4 call:right  @echo off…

Read More

Hi ! The title is very explicit to show you how we can run a batch script as admin using Powershell in order to manage windows processes in command line and can be run from a batch file like that : @echo off Title Run as admin using Powershell to manage windows Processes in command line by Hackoo 2020 If [%1] NEQ [Admin] Goto RunAsAdmin :Main Cls & color 0A Set “MyPID=” REM =================================================================================================   Powershell ^   Get-WmiObject Win32_Process ^ | Select-Object ProcessID,Caption,CommandLine ^ | Findstr /I /V “Get-WmiObject”   Powershell ^   Get-WmiObject Win32_Process ^ | Select-Object ProcessID,Caption,CommandLine…

Read More

Avast Free 4.8 was supposed to cease updates either a) at the end of 2009, then 2010, or b) when Avast 6 was released, according to this thread on their forum: http://forum.avast.com/index.php?topic=69329.0 Nevertheless, I installed it on one of my test Windows 98 systems today, and it proceeded to download and install the latest definitions (44MB), updating the original SETUPENG.EXE from November 2009 to today. This is critical for any 95/NT 4.0/98/98SE/ME users as this is the final version that will run on these versions. It’s also better than the older versions of Avast! because it contains resident shield. The free…

Read More

‘If you work with arrays often this function is very handy, works in any Access db ‘References needed: ‘Microsoft Excel NN.0 Object Library ‘Microsoft ActiveX Data Objects 2.8 Library ‘reference to:  Microsoft Forms 2.0 Object Library – is need for the array to Clipboard function. ‘have to browse for it with Office 2010: ‘found here:  C:\WINDOWS\system32\FM20.DLL ‘CODED BY T Michael Dunn ‘code need to export any table to .xls or a .txt file Sub TestMod() Dim aVal() As Variant, sQL As String, sFilePath As String, sErr As String sQL = “SELECT * FROM T_AppList”       ‘WHERE id<>’zzzz'” sFilePath = “C:\Users\SomeName\Desktop\Launcher_DB\my.txt”                    ‘\my.xls” Call…

Read More

Recently, Google Chrome hasn’t been working properly with websites that use Adobe Shockwave Player. Here’s how to fix it: Step 1. Go to Adobe’s website and download Shockwave Player: http://get.adobe.com/shockwave/ Step 2. Download and run the installer. Step 3. Type into chrome: about:plugins Step 4. Select the +Details option in the top right corner of the screen. Step 5. Scroll down to the one labeled Adobe. Step 6. There should be two files. Find the one that is stored in a folder labeled Chrome. This should be beneath the Version, under Location. Step 7. Select the blue text that says Disable. Step 8. Voila! Chrome should now work with Shockwave…

Read More