Save info   Get password
Home Submit your blog Edit Account Rules RSS-Archive Contact
    • delete




      How to Delete All Recent Temporary Files in Windows
      Windows keep track of your behavior and store all information like website that you have visited, recently used documents, embed personal information on every file that you create and keep outlook emails if deleted from outlook also. Windows keep this information in temporary files and these files are very big in size. Most of [...]

      Written by: Readerszone


      How to delete your Plaxo account (and why you want to)
      This brief guide will walk you through the steps on deleting your Plaxo account, and all of the data associated with it. Why would you want to do this? Plaxo has signed an agreement to be acquired by Comcast. First up, visit Plaxo.com and sign in. Try visiting after you have signed [...]

      Written by: Simplehelp


      Delete An “undeletable” File
      Here is step by step to delete an “undeletable” file : Open a Command Prompt window and leave it open. Close all open programs. Click Start, Run and enter TASKMGR.EXE Go to the Processes tab and End Process on Explorer.exe. Leave Task Manager open. Go back to the Command Prompt window and change to the directory the AVI (or other undeletable [...]

      Written by: About:Edit


      View Or Delete Bulk scraps or more then One Scraps In Orkut
      You can delete more than one scrap at a time by using the bulk delete feature. You can select individual scraps by checking the box to the left of the scrap, or you can select all scraps on the page by clicking the link to select all at the top of your scrapbook. Then, just [...]

      Written by: Orkut Tricks Tips And Latest Blogs


      C-program to delete a node from a tree
      Write a C program to delete a node from a Binary Search Tree?Solution:#includestruct binarysearchtree{ int data; struct binarysearchtree* left; struct binarysearchtree* right;};typedef struct binarysearchtree* tree;tree delete_node(tree T,int num){ tree temp; if (T==NULL) exit(0); //return NULL; else if(numdata) T->left=delete_node(T->left,num); else if(num>T->data) T->right=delete_node(T->right,num); else { if(T->left!=NULL&&T->right!=NULL) { temp=min(T->right); T->data=temp->data; T->right=delete_node(T->right,T->data); } else if(T->left==NULL) { temp=T;

      Written by: Technical Interview Questions


      View and delete Index.dat files from your Computer
      Index.dat files are hidden files that contain the information of all web sites that you have ever visited - every URL, and web page details, emails sent and received through Outlook, etc are listed there. Actually these files are useful as it used to cache visited web sites to help speed up the web page loading time at the same time they are dangerous privacy threat. Any one with little knowledge about its locations and structure can see history of almost all of your computer activities. Normally you can not delete these files manually.Index.dat Suite is a simple, free application for Windows that allows you not only to delete the index.dat files, temporary internet files, temp files, cookies and history, but it also allows you to view the index.dat files on your system. >Index.dat Suite's

      Written by: Techtrends - Software and blogging resources


      How to delete recycle bin in windows xp
      Whenever you install fresh windows on your system then on first display of your desktop you will find a icon of recycle bin.This icon is by default present on your desktop and windows does not provide any method to delete this.But if you want to delete this icon from your desktop anyhow, then we have two methods for this.First method:1.[Start] ->[Run]-> [Regedit]2.Registry Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\BitBucketModify/3.Create the Value Data Type(s) and Value Name(s) as detailed below.Data Type: DWORD //Value Name: NukeOnDeleteSetting for Value Data: [0 = Use Recycle Bin / 1 = Permanently Delete]4.Exit Registry and RebootSecond Method:start->run->gpedit.msc-> user configuration ->desktop->remove recycle bin from desktop->double click->change it

      Written by: Tech Buzz


      Auto delete empty directories with One-line batch script
      Raymond Chen, the Microsoft coder, explains that you don’t need a whole 260KB program to automatically delete empty subdirectories. You can create a single line batch file that will do exactly what you’re looking for: for /f "usebackq" %%d in ("dir /ad/b/s | sort /R") do rd "%%d" This is the long-forgotten follow-up to Performing an operation in [...]

      Written by: D' Technology Weblog


      SQL SERVER - 2000 - SQL SERVER - Delete Duplicate Records - Rows - Readers Contribution
      I am proud on readers of this blog. One of the reader asked asked question on article SQL SERVER - Delete Duplicate Records - Rows and another reader followed up with nice quick answer. Let us read them both together. Question from Mayank Mishra Is it possible to delete a single column from a table in SQL [...]

      Written by: Journey to SQL Authority with Pinal Dave


      I just got a Mac how the hell do you Control Alt Delete?
      I get asked this one A LOT - it's right up there with "Where is my right mouse button?" and "Where's the start Menu?" We enjoyed this response and thought it would be nice to share it.After using a mac for coming up on 3 years, not one single time has the operating system crashed, frozen, or had any other type of hang ups.However, sometimes applications will freeze up and you get the spinning ball that just wont go away. You can either sit there and wait for it to time out and eventually close, or you can do a Force Quit on the application causing problems.The Force Quit is not a Jedi mind trick even though it slightly sounds like it could be. The Force Quit is a lot like the ever familiar control alt delete on a PC. To initiate a force quit just hit the option+apple+escape key command and

      Written by: Ask The Admin


      Support (Vault) :: RE: Delete Local Copy *always* does in Vault 4.1?
      As it stands now, if I want to remove a file from Vault but keep its local copy, there is no way to do this without first making a local backup then restoring the backup after committing the change in Vault. ...

      Written by: Sushi or Death - for the addicted


      Banned Delete Remove Orkut Members From Community
      Owner of a any  Community, have the ability to remove or banned a member from there community. The difference between Remove or Banned is that if you remove the member, they will join again in the future. If you banned the member, they won’t be able to join unless you un-ban them.  To [...]

      Written by: Orkut Tricks Tips And Latest Blogs


      How to Write and Delete Testimonials in Orkut
      Testimonial is the best way to describe yours Friends , Yours Thinking And Love towards yours Friends !! Every one is wish to receive and aspect a testimonial from his/her Friend . Many of Our orkut user Fail to write testimonial because the dont now how to write testimonial , This tutorial will help you [...]

      Written by: Orkut Tricks Tips And Latest Blogs


      Notes From Lakewood Church-Delete, Delete, Delete!!
      PLACE: Lakewood Church-Houston, Tx, Joel Osteen, Pastor DATE: Saturday, March 18, 2008 TIME: 7:00 p.m. THE MUSIC: Worship Team: Steve Crawford, Da’dra Crawford Greathouse, Cindy Cruse Ratcliff, Choir & Band Songs: Salvation is Here, Still Standing, Indescribable, Glorify Your Name, Again I Say Rejoice The choir did a wonderful job on “Thou, Oh Lord” by the Brooklyn Tabernacle Choir.   THE MESSAGE: Scripture References:Romans 12:2 Subject: Breaking Free From [...]

      Written by: www.1800Gospel.com


      C-program to delete a node from a tree
      10. Write a C program to delete a node from a Binary Search Tree?Solution:#includestruct binarysearchtree{ int data; struct binarysearchtree* left; struct binarysearchtree* right;};typedef struct binarysearchtree* tree;tree delete_node(tree T,int num){ tree temp; if (T==NULL) exit(0); //return NULL; else if(numdata) T->left=delete_node(T->left,num); else if(num>T->data) T->right=delete_node(T->right,num); else { if(T->left!=NULL&&T->right!=NULL) { temp=min(T->right); T->data=temp->data; T->right=delete_node(T->right,T->data); } else if(T->left==NULL) { temp=T;

      Written by: Technical Interview Questions


      C program to delete a tree
      Write a C program to delete a tree(i.e, free up its nodes)#includestruct binarysearchtree{ int data; struct binarysearchtree* left; struct binarysearchtree* right;};typedef struct binarysearchtree* tree;void tree_free(tree T){if (T==NULL) return;else{ tree_free(T->left); tree_free(T->right); free(T);}}

      Written by: Technical Interview Questions


      Windows Tip: Access The Windows Security Window In a Remote Desktop Connection (Control-Alt-Delete Doesn't Work)
      I get asked often how to bring up the security box (control alt + delete) in remote desktop and here is the answer:To use Control + Alt + Delete in a Remote Desktop Connection terminal, use Ctrl + Alt + End instead.I tested it and it worked beautifully on two XP machines, 1 2003 server but on remoting in (What I can't make up words??) to my Windows XP Pro SP2 Laptop it only brought up the task manager. Any ideas?And for those of you that don't know Control - Shift -Escape opens you directly to the task manager. And you can alt + tab through tabs on your remote desktop if it is opened full screen.Got some good shortcuts for us? Tips at askTheAdmin dot com!I am off to my data center today. Should be interesting as we prepare for upcoming upgrades._TheShortcutingAdmiN_Check out our RSS feed.

      Written by: Ask The Admin


      How to securely delete files in OS X
      Using Shredder, a Dashboard widget, you can quickly, easily and permanently delete files in OS X. Install Shredder as you would any other Dashboard widget. Once installed, you’ll need to pick a shredding level - Low, Medium or High (the level can be changed at any time). To change the shredding level, click the small [...]

      Written by: Simplehelp


      unable to delete trial copy of Office 2007 from through add /rem
      news:A8F2737A-DF49-4B87-AF9F-B8F58EAE5C79@microsoft.com... >I am unable to delete a trial copy of Office 2007 from my hard drive, when > initially downloaded it states it became corrupted? MSFT Tech has no > answer ...

      Written by: Sushi or Death - for the addicted


      What is difference between DELETE & TRUNCATE commands?
      Delete command removes the rows from a table based on the condition that we provide with a WHEREclause. Truncate will actually remove all the rows from a table and there will be no data in the tableafter we run the truncate command.TRUNCATETRUNCATE is faster and uses fewer system and transaction log resources than DELETE.TRUNCATE removes the data by deallocating the data pages used to store the table’s data, and only thepage deallocations are recorded in the transaction log.TRUNCATE removes all rows from a table, but the table structure and its columns, constraints, indexesand so on remain. The counter used by an identity for new rows is reset to the seed for the column.You cannot use TRUNCATE TABLE on a table referenced by a FOREIGN KEY constraint.Because TRUNCATE TABLE is not logged, i

      Written by: Technical Interview Questions


      To make folder delete protected!
      ~Hey guys, I have here some tweaks that will help you in anyways. I'm sure that for some reasons there are times that we will need this ways and means! So, guys here is the instruction:INSTRUCTION:1)Right click on the folder2)Then in the general tab click advanced (near read only option)3)In that click encrypt contents to secure data.4)This can happen if u run windows Xp and you have NTFS file system on that particular drive and an administrative account.This is really working guys, so give it a try! Happy tweaking... c",)

      Written by: Denz Techtronics Blog


      PHP : Failed to delete/open text file
      Problems:You can not delete or open a file using php scriptYou get error messages (for example) like this: Warning: unlink(textfile.txt): Permission denied in /var/www/site/index.php on line 4You've chmod-ed the file (textfile.txt) into 777 but still no luck, the file still there when you delete it using unlink() functionYour php script files (even) owned by root and located in the same directory as the file that you want to delete, but still can not delete it.Assumption:OS: Debian GNU/Linux 4.0 (Etch)Web server: Apache 2.2 with PHP5Solution:Your php script files should not owned by rootAt least the directory where the php script files (in this example: /var/www/site) and the file you want to delete (in this example: textfile.txt) is owned by user that run Apache 2.2 webserverYou can find

      Written by: Achmad Z's archives


      AUTO DELETE TEMPORARY FOLDER
      ll what i prefer is %temp% " without quotes.. at Start -> Run..this opens ur temp folder n den u cal erase it neatly// still try dis one too..First go into gpedit.mscNext select -> Computer Configuration/Administrative Templates/Windows Components/Terminal Services/Temporary FolderThen right click "Do Not Delete Temp Folder Upon Exit"Read More...

      Written by: blogging is better than hacking


      Delete Prior Doesn't Delete Messages from the Mail Client
      From the Message List, you can clean up old emails, by choosing Delete Prior from the menu. This will only delete messages on the handheld, regardless of the email reconciliation settings you specify.So if you want to delete a large number of emails from both your mail client and your handheld, it's easiest to do that from the mail client (e.g. Outlook)

      Written by: Blackberry Tips and Tricks


      Delete unwanted Objects in QA system
      I have deleted unwanted Update rules and InfoSources (that have already been transported to QA system) in my DEV system. How do I get them out of my QA system? I cannot find the deletions in any transports that I have created. Although they could be buried somewhere. Any help would be appreciated. I had the same problem with you. And I have been told there is a way to delete the unwanted objects. You may request the Basis team to open up test box temporarily to remove the obsolete Update rules and InfoSources. Remember to delete the request created in test after you have removed the Update rules and InfoSources. When I tried to delete the master data, get the following message"Lock NOT set for: Deleting master data attributes". What I need to do in order to allow me can delete the master

      Written by:


      Delete multiple spool request
      The program are RSPO0041 or RSPO1041. This is handy whenever you encounter a user who managed to create a lot of spool requests which are choking your system. Deleting them with SP01 will be too slow and you will get time out if it exceed the online time limit specify by your basis people. Sending faxes from SAPPrinting ABAP Report over LAN and WANAuto convert SAP spool output to PDF fileDelete multiple spool requestHow can I print A3 format in SAPParallel printing to all the SAP device printersPrint to an USB printer from SAPMass Lock All Printers with SPAD

      Written by:


      Basis - Edit, create, delete or adjust your database table
      Edit, create, delete or adjust your database table The database utility is the interface between the ABAP Dictionary and the relational database underlying the R/3 System. This tools allows you to delete all the data in the tables. You can call the database utility from the initial screen of the ABAP Dictionary with Utilities -> Database utility (Transaction SE14). You can use the database utility to edit all the database objects that are generated from objects of the ABAP Dictionary. These are database tables that are generated from transparent tables or physical table pools or table clusters, indexes, database views and matchcode pooled tables or matchcode views. If you want to use the database utility, you need authorization for authorization object S_DDIC_OBJ, e. g. S_DDIC_ALL. SA

      Written by:


      Delete Load program for SAPScript
      Occassionally, when you make frequent changes to your SAPScript, the system can get out of sync.When you view the form, the old data get display without your changes.This can be fixed by deleting the SAPScript LOAD with program RSTXDELL. SAPScript Important ProgramsReading Text in SAPScriptsSAP Scripts Boxes/Lines/ShadingSAP Printer commands in SAPScriptsDifferent font on the same line IN SAP SCRIPTSPrint Footer notes only on the last page IN SAP SC...Orientations in SAPSCRIPTSAP SCRIPTS Protect...EndprotectRetrieving data without modifying the original cal...SAPscripts How to calculate Totals and SubtotalsSAPScripts - Developing SAPScript in different lan...How to convert Sapscript spools request to PDF?How to convert Sapscript spools request to PDF?How to Upload graphics (IMAGE) to your

      Written by:


      Cannot delete file: Access is denied or Thefile is in use by another program or user
      "Cannot delete file: Access is denied or The file is in use by another program or user" or similar type of error messageCannot delete file: Access is denied (or )There has been a sharing violation. (or)The source or destination file may be in use. (or)The file is in use by another program or user. (or)Make sure the disk is not full or write-protected and that the file is not currently in use.These are the well know error message to every computer user. Some times when you try to delete a file of folder from hard disk these error message pop ups and doesn't allow us to delete. We don't have any clue which program in our system using this file or folder, Even after closing the all related files, system doesn't allow us to delete. For these problem here is the best solution "UNLOCKER".What th

      Written by: Net Touch


      Glad For Delete Mode/Make It Blue For Now
      Am I the only one who spends around 14 minutes writing a reply to some blog---spilling their guts----and then decides at the last second to just use the mouse to make it all blue and delete?   I have done it at least twice tonight.   I had so much to say, but got scared.   What was I scared of?   For one, that you would judge me.   For two---that I would have to judge myself after you did.   I'm glad I deleted that last comment I was working on  that was about two paragraphs long.   Guess I will just keep it to myself and at least I am the only one who has to  judge it.   Sorry you missed that.  You would have gotten an earfull.

      Written by: Online Home Loans


      Next iPhone firmware caught on video; screenshots of Microsoft Exchange support, mass email delete, Cisco VPN, and parental controls
      Everything's a bit muddled in the iPhone firmware world. Will the iPhone v1.2 "Aspen" OS that's used in the iPhone SDK emulator be released prior to the iPhone v2.0 firmware that's due out in June? The iPhone v1.2 Aspen firmwar...

      Written by: iPhone nano - Apple iPhone card news


      How to delete HP-UX VM (virtual machine):
      How to delete HP-UX VM (virtual machine): Deleting HP-UX virtual machine is very easy process, once you determine which HP-UX VM(Integrity VM guest ) needs to be deleted it's just matter of running one command – hpvmremove: root@hpvmhost:/tmp> hpvmstatus [Virtual Machines] Virtual Machine Name VM # OS Type State #VCPUs #Devs #Nets Memory Runsysid ==================== ===== ======= ========= ====== ===== ===== ======= ======== guest2 4 HPUX Off 1 5 2 8 GB 0 guest1 3 HPUX Off 1 5 1 2 GB 0 root@hpvmhost:/tmp> hpvmremove -P guest2 hpvmremove: Remove the virtual machine 'guest2'? [n/y]: y root@hpvmhost:/tmp> hpvmstatus [Virtual Machines] Virtual Machine Name VM # OS Type State

      Written by: sysdigg


      How to Implement Auto-Delete of messages in Exchange Manager
      What's up ladies and gents! This is your friendly Admin Igor...contributing to the great ATA.Admins, do you have one of those people that is a human in body but a pack rat at heart? And you just can't help it but look at their inbox size climb? Well... things are about to change..and for the better! This tip, can be applied when there is no company policy set up to limit the Exchange Mailbox Size, this rule will delete any messages that are stored after a certain day or certain message size. Great for that impending federal case as well!So there is no executive fallout when there emails disappear advise your End Losers co-workers that this will be implemented before doing so. Open up your Exchange System ManagerClick on Recipient-->Recipient PoliciesRight click anywhere within the Recipie

      Written by: Ask The Admin


      I have a couple older posts that I don't like the picture quality and maybe no one has commented on. Is it okay to delete posts like these?
      My opinion is that, ultimately, the decision is yours because first and foremost it's your blog. If, for instance, you wrote a few posts in the beginning (e.g., about the joys of vacuuming your hallway) but your blog began to slowly take a different turn (e.g., how to grow your...

      Written by: Blogging Basics 101


      Cannot delete file: Access is denied or Thefile is in use by another program or user
      "Cannot delete file: Access is denied or The file is in use by another program or user" or similar type of error messageCannot delete file: Access is denied (or )There has been a sharing violation. (or)The source or destination file may be in use. (or)The file is in use by another program or user. (or)Make sure the disk is not full or write-protected and that the file is not currently in use.These are the well know error message to every computer user. Some times when you try to delete a file of folder from hard disk these error message pop ups and doesn't allow us to delete. We don't have any clue which program in our system using this file or folder, Even after closing the all related files, system doesn't allow us to delete. For these problem here is the best solution "UNLOCKER".What th

      Written by: Net Touch


      How to Remove or Delete AutoPlay Handler from the Options List in XP and Vista
      AutoPlay or AutoRun dialog window will pop up when an removable drive, portable device such as digital camera and media player or CD/DVD disc been inserted into computer or placed into optical drive, with plenty of action choices in a list of options for users to choose to perform on the just connected drive and drive contents. Each item in the AutoPlay list is a handler installed by various applications to show as an option for a particular events or content types such as Pictures, Videos, and Mixed.Windows by default has several AutoPlay handlers, and other third-party programs, especially media player such as MusicMatch Jukebox and RealPlayer, and image burning software such as Nero will add their own AutoPlay handlers and shortcuts into the list. Over the time, the AutoPlay list can ge

      Written by: LAR


      How to Delete and Remove Recovery Partition in HP Computer
      HP desktop, notebook or laptop computer normally comes with a special recovery partition which caves out on a portion of local hard disk. The hidden partition, which size can comes to about 5 to 10 GB in size, usually used to store recovery information and diagnostic tools. For HP system, the special Recovery Partition, normally on D drive, is used for PC System Recovery, an easy-to-use suite of three utilities that restores individual driver and programs or restores the hard drive on the PC to original default factory condition.Typical message when accessing HP Recovery Partition - This area of your hard disk (or partition) contains files used for your system recovery. Do not delete or alter these files. Any change to this partition could prevent any recovery later.The problem with recove

      Written by: LAR


      Delete DelEte DELETEEE maldita mosca !!
      Artilugio un tanto geeekekkkkeeeeeeee xD , no podrás dejar pasar esta novedosa forma de acabar con ellas , nuestras amiguisimas las moscas, se trata de un mata moscas que viene en forma de la tecla Del y que hasta te servira para darle rienda suelta a esa mata-moscas que llevas dentro. Viene disponible en dos colores (blanco y negro) y es compatible con Windows, linux y Mac según sus creadores.

      Written by: Yo no soy friky


      Not so minor changes coming to next iPhone v2.0 - Bonjour, full-screen browsing, vector graphics, locally stored web-apps, PowerPoint, mass email delete, and possibly search
      Well that sure was a mouthful. Sure, there are those minor changes to the iPhone UI that may or may not materialize, but there are also some serious changes in store for the iPhone v2.0.The iPhone SDK, freely downloadable from Apple, is proving to be a...

      Written by: iPhone nano - Apple iPhone card news


      Twitter needs an SMS delete option
      Twitter needs to implement a system where those of us who update via SMS can delete a tweet while on the go. I know you can always log in and delete a tweet, but the other day I was going through a bit of an emergency and didn’t have access to the internet for a number [...]

      Written by: OFlaherty


      What's the difference between DELETE TABLE and TRUNCATE TABLE commands?
      DELETE TABLE is a logged operation, so the deletion of each row getslogged in the transaction log, which makes it slow. TRUNCATE TABLEalso deletes all the rows in a table, but it won't log the deletion ofeach row, instead it logs the deallocation of the data pages of thetable, which makes it faster. Of course, TRUNCATE TABLE can be rolledback.

      Written by: Technical Interview Questions


      Delete Comments from Excel Workbook using VBA
      Remove Comments Programmatically using Visual Basic Applications (VBA)Most of the times comments are used for internal purpose. This need not go with the workbbok, here is the way to remove itThe following code uses RemoveDocumentInformation. It removes all information of the specified type from the workbook. It is compatible with Excel 2007Sub Remove_Comments_From_WKBK()'' Remove Comments from Excel 2007 Workbook'' ActiveWorkbook.RemoveDocumentInformation (xlRDIComments)End SubIf you want the same for Excel 2003 and before here is the codeSub Remove_Comments_From_WKBK_2003()'' Remove Comments from Excel 2003 Workbook'' Dim wks As Worksheet Dim cmnt As Comment For Each wks In ActiveWorkbook.Sheets For Each cmnt In wks.Comments cmnt.Delete Next cmnt

      Written by: VBA Tips & Tricks


      Delete the UNDELETABLE file with UNLOCKER
      -Tips-Download from ccollombGet rid of error message like Error deleting file or folder, cannot delete folder: it's being used by another person or programUnlocker application was designed to be a very useful Windows Explorer extension allowing users with a simple right-click on a file or folder to easily get rid of error message such as error deleting file or folder, cannot delete folder: it's being used by another person or program.Helps delete locked files with error messages like:· Cannot delete file: Access is denied· There has been a sharing violation.· The source or destination file may be in use.· The file is in use by another program or user.· Make sure the disk is not full or write-protected and that the file is not currently in use.

      Written by: PC solution


      Auto delete old posts - Wordpress Plugin
      Auto Delete Posts is a plugin to automatically delete posts after a set expiration date. The plugin deletes all posts regardless of category that are older than a set expiration date. [Source] The expiration is set in number of days. Download Auto Delete Posts v0.5 wordpress plugin.

      Written by: Blogulate


      HowTo: Delete All Thumbs.db Recursively
      An offline messages just arrive from a fedora newbie trying to polish more of his FTP administration skills. After quite some time of establishing his fully functional FTP server via VSFTP, he then realized that most of their staff with windows-based desktops usually Selects ALL files, Copy and... [[ This is a content summary only. Visit my website for full links, other content, and more! ]]

      Written by: A SysAd blog - Fedora Linux


      Windows XP - How to delete run command URLs?
      Ok, this tip is useful whenever you’d like to delete the existing URLs in the run command instead of the cached lists inside it. The URLs was listed automatically once you surf the Internet.To know whether your run command has existing URLs, simply open your Run window (Windows+R) and type something like http:// inside the text area. You’ll see a drop down list that shows the website URLs you’ve visited recently.Anyhow, follow these instructions to get rid of them:-Clear IE HistoryTo do this, open your IE browser, go to Tools > Internet Options > General tab. Click the Delete button in the Browsing history (IE7). For IE 6 and below, click the Clear History button in History.Clear all records, recently accessed documentsRight click the Start button > Properties > Select Classic Start

      Written by: dX-Xel Tech Blog


      Why I Delete Comments
      I really thought that I made the comment policy clear here and here but I have had a run of unasked for advice and scathing opinions so it seems that I may need to post a permanent heading. Until then…here we go again. This is my house and if I ask you to leave then [...]

      Written by: A Celebration of Curves


      Delete An "undeletable" File
      Are you having a problem deleting a certain file? a lot of us PC users sometimes face this kind of PC problem. sometimes we just let the "undeletable file" inside our pc but after you've read and understand the process on how to delete "Undeletable file" then it will not be a problem anymore. here are the steps to help and guide you to delete the "undeletable file".follow the steps below carefullyWindows 95/98/MEIf you are using Windows 95, 98, or Windows ME, the easiest way to remove an undeletable file is to boot to a DOS prompt and manually delete the file. Before you do this, you'll want to make a note of the location of the file including the entire path to it. Follow the steps below to delete these types of files.If you already know the path to the file, please skip to Step 7Click o

      Written by: IT-AID


      Backup,Delete or Restore Computer(Internet) Cookies-The Easy Way:Cookie Monster
      Cookie Monster is a free utility to manage cookies in your computer.With cookie monster you can preserve cookies you want and delete unwanted ones.As we all know cookies are small text files that are stored in user's browser(computer) by the web server or websites to store login information,preferences etc..May be some sites you don't trust or don't browse often,cookie monster lets you select & delete them with a single click.One more nice feature is you can export the preserved cookies to a preferred folder and importing wherever you want..Features in details:1.Allows you to select and preserve useful cookies and delete remaining ones2. Supports Interner Explorer,Mozilla Firefox,Netscape,Opera browsers and you can view,erase,save or restore multiple browsers cookies at one loc

      Written by: A blog that enrich your online experience


      Auto DELETE temporary folder ?
      what we used to prefer is, type "%temp% " {without quotes} in Start -> Run.This opens your temporary folder and then you can erase it easily, but still try dis one too..First go into gpedit.mscNext select -> Computer Configuration/Administrative Templates/Windows Components/Terminal Services/Temporary FolderThen right click "Do Not Delete Temp Folder Upon Exit"Go to properties and hit disable.Now next time Windows puts a temp file in that folder it will automatically delete it when its done!Note : Remember, GPEDIT (Group Policy Editor) is only available in XP Pro.

      Written by:


      Keyboard shortcut of the week: don`t bin it, delete it
      Whenever you delete a file it will be sent to the Recycle Bin so that it can be restored if you change you mind (unless the file is too large for the recycle bin).Sometimes, however, you may want to bypass the Recycle Bin and delete a file completely(ish), to do this highlight the files you wish to delete, hold down the Shift key and press Delete. As with a normal deletion you will be asked to confirm the action.These files can still be restored by using appropriate software, as I have explained in a previous post, unless the drive they were deleted from is defragmented - even then it may be possible to restore the files, although this requires sophisticated techniques beyond the reach of most users.

      Written by: Bloody Computer


      Scroll down lunch menu…press ‘Shift & Delete’
      Here we go again…another battle to fight for getting my thoughts posted on MGL Unplugged. I have promised the Webmaster that I wouldn’t sound too anarchistic…oh well I can safely say that I tried!It is one 'o' clock in the afternoon, and one can hear loads of grumbling noises in and around office pantries (lunchrooms) in Indian IT organizations. Eager stomachs battling hunger are in direct conflict with employees’ minds as their sad faces make that "oh no not again" expression.Of course, every now and then, the lunch providers at our desi corporate canteens decide to surprise us and change the menu. And this could only mean that the good people at the canteen have decided that they should no longer serves us tasteless curry…instead they start serving tasteless pepper water (yeah

      Written by: MGL Unplugged


      MSN, Yahoo, ICQ, AIM Status Checker and MSN Delete Checker
      [ Download Newest Invisibility Checker v2.0 ]The invisible feature is really great because sometimes you don't want people to bug when you're really busy. However, this useful feature is now pretty useless because there is a way on how to detect invisible users on Yahoo Messenger.There are in fact many sites I1. XEEBERStraight forward. No software needed. Just visit XEEBER's website, enter the Yahoo ID that you want to check and click the magnifying glass. 2. Invisible ScannerAlso the same as XEEBER. Just enter the Yahoo ID and click the CHECK button. There is a manual method which I read in a comment which is to invite the offline contact for conference. If the contact is really offline, you'll get an alert stating that the contact is offline. If nothing happens and you don't get the aler

      Written by: famous blog on network security


      Multiple bStore product delete capability
      We are pleased to announce that you can now delete multiple bStore products through your bStore manager page. To do so, simply check the checkbox in the bStore product tile you wish to remove and click on the “Remove” button located above the product tiles. This should make managing and tidying up your [...]

      Written by: Bravisa Team Blog


      Delete!
      Delete! é uma instalação dos artistas austríacos Christoph Steinbrener & Rainer Dempf, onde durante duas semanas qualquer referência a logotipos, slogans, pictogramas e publicidade de uma rua comercial de Viena foram cobertos de amarelo.Delete!is an installation by austrian artists Christoph Steinbrener & Rainer Dempf.For two weeks advertising signs, slogans, pictograms, company names and logos in a Viennese shopping street was covered in monochrome yellow.Via:GUERRILLA-INNOVATION.COM

      Written by: Invisible Red


      DELETE : ABAP Keyword a day
      DELETEDelete from a database table- DELETE FROM dbtab WHERE condition.- DELETE FROM (dbtabname) WHERE condition.- DELETE dbtab.- DELETE *dbtab.- DELETE (dbtabname) ... .- DELETE dbtab FROM TABLE itab.- DELETE (dbtabname) FROM TABLE itab.- DELETE dbtab VERSION vers.- DELETE *dbtab VERSION vers.Delete from an internal table- DELETE itab.- DELETE itab INDEX idx.- DELETE itab FROM idx1 TO idx2.- DELETE itab WHERE condition.- DELETE ADJACENT DUPLICATES FROM itab.Delete a program- DELETE REPORT prog.Delete text elements- DELETE TEXTPOOL prog LANGUAGE lg.Delete a data cluster- DELETE FROM DATABASE dbtab(ar) ...ID key.Delete a file- DELETE DATASET dsn.Delete a screen- DELETE DYNPRO f.DELETE - Delete from a database tableVariants1. DELETE FROM dbtab WHERE condition.DELETE FROM (dbtabname) WHERE condition.2. DELETE dbtab.DELETE *dbtab.DELETE (dbtabname) ...3. DELETE dbtab FROM TABLE itab.DELETE (dbtabname) FROM TABLE itab.4. DELETE dbtab VERSION vers.DELETE *dbtab VERSION vers.EffectDeletes line

      Written by: SAP Certification,Ebooks, PDF's and Articles


      Delete de posts
      Cheguei ontem de viagem e fui dar uma avaliada nas estatísticas do blog. Praticamente 60% das visitas são atraídas pelos "hypes" da Juliana Knust e da Fernanda Paes Leme. Esse pessoal não está interessado em ler meus posts e sim em "Put#$%#". Como não quero escrever para leitores "Put@#$@$#&" e também não quero enganar ninguém, decidi deletar esses posts. Portanto, se você chegou até aqui com o intuito de achar fotos, vídeos ou outra coisa relacionada a "Put#$%#", pode dar meia volta, pois não vai achar nada.Vou ser mais criterioso ao decidir postar sobre algum "hype" a partir de hoje. Não tem como ignorá-los, mas tem como separar aquilo que é relevante daquilo que é supérfluo ou irrelevante para este blog.Aliás, sobre esse assunto, recomendo leitura dos dois posts relacionados no "O fim da Várzea" e no "Papo de Homem", pois eles influenciaram bastante nessa minha atitude. Abraços!

      Written by: Armazem do Bud


      How to delete image or picture in Blogger?
      "Oppsss...I have uploaded a wrong picture!! &^%#&#!!" Yeah..it sounds familiar. It also happened to me. It's not a big deal if you've upload a 100kb or 300kb image. But, how about 3mb or 5mb? As we know, Blogger only provide 1024mb free space to store your picture.Of course, you can delete your new post including the image that you have just uploaded. Then, how about the old posts? Do you want to delete them just because it has the photo of your old fashion hair style??No worries guys. Normally all images that we have uploaded was stored in the blogger.com database. And the only way (I guess) to access all of them is in the Picasa Web Album. Just open that link. You'll see the Albums based on how many blog you've created. If you have created 3 blogspot blog using the same account, then you should have 3 Albums.If you still confuse on how to use the Picasa Web Album to delete your image, just follow these simple steps:-Step 1Click to your blog's Album which you want to dele

      Written by: dX-Xel Tech Blog


      How to delete my MySpace.com account?
      Question: Not long ago, a reader told me he would like to fresh-start his MySpace profile and asked me what is the best way to delete his existing MySpace account. Answer: Well, unlike other social networks, MySpace offers a pretty straightforward process that will allow you to cancel your MySpace account pretty easily. One thing to note before closing a MySpace account is that on cancelation, MySpace wipes off your entire account contents (including pictures, videos, blogs, codes and customizations) .Therefore, it is your responsibility to backup your MySpace account contents before deleting it. Here’s an easy-to-use procedure that will allow you to delete a MySpace account.

      Written by: AVirtualExit.com


      Dont Delete Your Blogs!
      This week has just been all for sponsored posts. Ive been making more posts for smorty and sponsored reviews than any other time in my four months blogging and hey, I think it was all worth it.Ive been making quite a notable amount of money doing reviews for my agloco pilipinas blog that i thought died centuries ago until i found out from a friend that it was already on PR4 status and well, accelerated my earnings.I made around $120 from smorty just this week and $65 from sponsoredposts. I did not have any P P P this week since im afraid about their deviance to google's pagerank as they moved to make their own rank and naming it as real-rank, a move that made bloggers doubt them including me. So, i think im going to make things settle down first and see if ill work for them again.Bottomline, dont ever delete your blogs. It might just be your money maker. ;)

      Written by: Kirbitz - Earn money with Kirby.


      Delete songs???
      I run Linux, so when I right click on the song files, it only lets me "move to trash" instead of delete the songs.? It seemed to work well enough, since the file disapeared from the folder, but when I unplugged the MP3 player, it still was on there,...

      Written by: Fixya.com


      SystemRestore is set to delete restore points after roughly 136 years
      Normally Windows uses up to 15 percent of a drive’s available space to save restore points. In XP, the option to change this figure was configurable from the System Restore tab of the System Properties dialog box. But sadly this option is no longer offered in Vista.But you can do so as follows :Open regedit and go toHKLMSOFTWAREMicrosoftWindowsNTCurrentVersionSystemRestoreCfg Double-click the DiskPercent.The default is f (in hexadecimal) which is 15 in decimal. For making it say 10% type 'a'Now again, how frequently you'd like to have your SystemRestore points auto-created can also b configured as follows :Open regedit and go toHKLMSOFTWAREMicrosoftWindowsNTCurrentVersionSystemRestoreYou can change the value RPGlobalInterval from its default setting of 86,400 seconds (24 hours) to, say, 43200 (a8c0) if u want it created every 12 hrs.As and how your new restore points get created, the older ones get deleted due to the available space constraint, on a FIFO or "First In Fi

      Written by: Windows Vista compatible software


      Delete the Undeletable
      As many of us move forward from Windows XP or prior beta versions of Windows Vista to the final RTM version, I thought this little tip might be in order. You may be aware that Windows Vista includes a number of different ways to upgrade a computer, from a straight in-place upgrade (insert CD, run setup and choose upgrade) to Windows Easy Transfer, which allows you to copy settings, programs and data from an old setup a fresh shiny new OS environment. In doing this, it's not unusual to find some folders that can't be accessed, even by an administrator, because their ACLs were set for accounts with SIDs that applied to an old partition.How do you take it back? -> The secret lies in two command-line utilities, one ancient, the other completely revised for this release. Respectively, these are takeown (which takes ownership of a file or directory) and icacls (which sets new ACLs on that directory). I created a small batch command on my system called itsmine.cmd, as follows:takeown /f %1

      Written by: Windows Vista compatible software


      How to delete my hotmail account?
      Question: I have free email accounts with all popular email services (Google, Yahoo, Hotmail etc’). Few days ago i decided to delete my Hotmail account. Can you propose a quick and easy way to have my MSN account perpetually cancelled? Answer: I am certainly all for using no more that one free email account as per your choice (and make sure you backup your email data periodically by using an email desktop client like Windows Live Mail, Outlook Express or Mozilla Thunderbird). A few months ago, I have written a detailed post on how to delete an MSN account. Please use the information i provided there in order to delete your Hotmail account. Good Luck.

      Written by: AVirtualExit.com


      How to Delete Your Google Past Searches
      Searches quite useful if you're a Google fanGoogle is a search technology used by all of you and I bet you admit it. But if you're a real Google fan you conducted thousands of searches on Google and your browser, no matter it is Internet Explorer, Firefox or any other application, remembers them all. If you want to test this, just go over to Google, click inside the search box and press the "A" key to write a word.If you ever searched Google for a word beginning with the "A" letter, then a drop-down list should appear showing your past queries made on Google. Because this list can become huge and provide numerous words and phrases, some of you might want to delete it but you don't know how to do that. Well, this is what you should do in order to remove the past searches depending on your browser:Internet Explorer 6 – Go to Tools / Internet Options / Content. Open the 'Personal Information' window and click on the 'Clear Forms' button located in the 'AutoComplete' area. Click

      Written by: v6 Online Free Game, Patch and Trailer Downloads


      Quick StartUp 2.3 : Inspect, Edit, Disable or Delete StartUp Programs
      When you turn on your computer certain applications, drivers, and services are automatically started at the beginning of each Windows session. The information that tells Windows to automatically start these items can be located in a number of places, ranging from a program group on your Start Menu, to certain initialization files that are executed when Windows starts, to one of many places in the system registry. The StartUp manager tool lets you centrally manage all of these items using one single interface. Using the StartUp manager you can easily add, remove, edit, disable, and enable any and all of these "startup items" in order to keep your system's boot-up process as fast and efficient as possible.Software Developer HomepageDownloadFile Size : 1.1 MB

      Written by: Free and Save Zone Download Software


      How to delete a comment i left on other people’s profile on MySpace?
      Question: Here’s an issue i have: I left a comment on a friend’s MySpace profile, and i want to delete it ASAP. For some reason, i don’t seem to see the a link that will allow me to delete that comment. Is there something i can do? Answer: Yes you can, and you’ll be surprised how simple it is. First, make sure you are logged in MySpace. Now navigate to the profile in which you left your comment in, then go to the Comments section and click View All. Now just scroll down and locate the comment you left, you’ll notice that a Delete My Comment link is available for you to delete that comment. Enjoy

      Written by: AVirtualExit.com


      How-to: Delete Undeletable Files
      This bugged me for a few weeks before I found a solution. I was creating a file through FireFTP but Firefox crashed in the middle and the file was “half-created”. It exists on the Windows desktop as an empty file but it did not seem to fully exist on the hard drive. It just sits there on my desktop titled “i dont have 8gb free” teasing me because it knows I can’t get rid of it. When I tried to delete it I got an error message: Cannot delete file. Cannot read from the source file or disk. So I know the file isn’t in use by any processes — the computer actually can’t find the file I’m referring to! Here are things I tried and failed: Deleting through command line. Changing file permissions. Renaming the file (same error as above). Overwriting the file from different programs. Rebooting in safe mode and deleting from there. Booting into a Linux Live CD, loading up the NTFS drive reader to access the file. Clearing processes that m

      Written by: jon lee dot see eh


      How-to: Delete Undeletable Files
      This bugged me for a few weeks before I found a solution. I was creating a file through FireFTP but Firefox crashed in the middle and the file was “half-created”. It exists on the Windows desktop as an empty file but it did not seem to fully exist on the hard drive. It just sits there on my desktop titled “i dont have 8gb free” teasing me because it knows I can’t get rid of it. When I tried to delete it I got an error message: Cannot delete file. Cannot read from the source file or disk. So I know the file isn’t in use by any processes — the computer actually can’t find the file I’m referring to! Here are things I tried and failed: Deleting through command line. Changing file permissions. Renaming the file (same error as above). Overwriting the file from different programs. Rebooting in safe mode and deleting from there. Booting into a Linux Live CD, loading up the NTFS drive reader to access the file. Clearing processes that m

      Written by: jon lee dot see eh


      How to Delete and Remove hiberfil.sys Hibernation File in Windows XP and Vista
      In Windows operating system environment such as Windows XP and Windows Vista system, there is always a file named hiberfil.sys created and existed in the system root drive on boot disk. The hiberfil.sys is large and big in size, always as big as your system physical memory (RAM) size. For example, if the computer have 2 GB of DRAM memory, the hiberfil.sys file size will also be around 1.99 GB in size, taking up precious hard disk space, and in worse case increase fragmentation on the drive.hiberfil.sys is a file that Windows system creates whenever the computer goes into hibernation mode. When system hibernates, the system state of the computer is preserved by storing a copy of all data in the memory in hiberfil.sys file located on your local disk, so that when the computer restarts, the information can be read into memory to restore the state as of exact state when computer starts to hibernate. That also explains why the size of hiberfil.sys file is always same size with computer’s

      Written by: Keep it Alive


      A Pointless Entry I'll Probably Delete Later
      Sometimes there’s just nothing inparticular to write about, folks. Hence the lack of new entries over the last few days. Believe it or not, there’s no drama on my end… no broken bones, no burglaries, house-fires, deaths in the family or extraterrestrial abductions complete with marathon gang-probing sessions. That, and I just had a damn good pull an hour ago, so my balls are nice and empty, just like I like ‘em. As lame as an “I haven’t been writing a lot lately, so I’ll write an explanation about why I haven’t been writing as a new entry!” entry is, while I’ve got your ear, allow me to direct your attention to some shit I’ve been fiddling around with. Hang on to your rubber underpants, kiddies… I’m taking this motherfucker to a whole ‘nother level! Notice – if you will – the brand-spanking new Google Translation button just under the banner over there. It probably doesn’t translate for shit (I’m hoping for an anus-load of comical ‘Engrish

      Written by: Handbook for the Hellbound


      [Tutorial] How to delete history links, temporary internet files and cookies from Opera, Firefox and IE
      Opera1. Go to Tools -> Delete Private Data...2. Press Details >> and check all the things you want to delete3. Press DeleteFirefox1. Go to Tools -> Clear Private Data...2. Check the thing you want to delete and press Clear Private Data NowIE71. Go to Tools -> Delete Browsing History...2. You can delete only the thing you want by pressing the delete button besides them, or you can press Delete all...

      Written by: FindHow


      Whose idea was it to make Ctrl+Backspace delete the previous word?
      James Manning mentioned in a footnote to a blog entry on PowerShell and WMI that he considers the Ctrl+Backspace shortcut key a Windows-ism. Where did this shortcut key come from? From a fan of the Brief editor . A few people in the early days of the Read More......(read more)

      Written by: Windows Vista compatible software


      freezing, bad track, won't delete tracks
      ok, there's this option called unknown artist under the artist option on my sansa, and everytime i click on of the songs, the screen will read bad track, until the sansa runs out of battery, i can't even shut the darn thing off. what do i do???

      Written by: Fixya.com


      How to delete undeletable files
      How many times have we been annoyed by that messages? Oh yeah, there are many alternatives of above such as :* Cannot delete file: Access is denied* There has been a sharing violation.* The source or destination file may be in use.* The file is in use by another program or user.* Make sure the disk is not full or write-protected and that the file is not currently in use.I've got two ways to solve this problem.First way : If you're not tech buddy, you should go to second way. * Go to Start menu -->> Run -->> type cmd and press enter (this will open command prompt) * After that press Ctrl+Alt+Del to bring up task manager * Go to Process tab, find explorer.exe, then click End Process. * Your Taskbar will disappear. * Go back to the Command prompt you just left opened. * Browse folder or file you want to delete. * Delete file with del command and remove directory with rmdir command. * After that, in the task manager, choose File -->> New Task (Run..) * Then type explorer.e

      Written by: DIGG - IN


      SQL SERVER - 2005 - OUTPUT Clause Example and Explanation with INSERT, UPDATE, DELETE
      SQL Server 2005 has new OUTPUT clause, which is quite useful. OUTPUT clause has accesses to inserted and deleted tables (virtual tables) just like triggers. OUTPUT clause can be used to return values to client clause. OUTPUT clause can be used with INSERT, UPDATE, or DELETE to identify the actual rows affected by these statements. OUTPUT clause can generate table variable, a permanent table, or temporary table. Even though, @@Identity will still work in SQL Server 2005, however I find OUTPUT clause very easy and powerful to use. Let us understand OUTPUT clause using example. ------------------------------------------------------------ --Example 1 : OUTPUT clause into Table with INSERT statement ------------------------------------------------------------ USE AdventureWorks; GO --Creating the table which will store permanent table CREATE TABLE TestTable (ID INT, TextVal VARCHAR(100)) --Creating temp table to store ovalues of OUTPUT clause DECLARE @TmpTable TABLE (ID INT, TextVal VARCHAR

      Written by: Journey to SQL Authority with Pinal Dave


      How to Delete a Partition using fdisk
      In this example we are removing two partitions from a hard drive. There is one primary DOS partition (C: ) and one Extended DOS partition with a Logical DOS drive (D: ) on it. When removing partitions it is best to remove them in this order: Logical DOS Drive Extended DOS Partition Primary DOS Partition Below are the complete instructions to walk you through the process of removing existing partitions on your hard drive.1.) Insert the Startup/Boot disk in the floppy disk drive, restart your computer. When the Microsoft Windows 98/95 Startup menu is displayed, select the Start computer without CD-ROM support menu option, and then press Enter. At a command prompt, type fdisk, and then press Enter. 2.) The first screen you will see will ask you - Do you wish to enable large disk support? Press Y and then press Enter. This will enable the FAT32 file system 3.) After you press Enter, the following fdisk Options menu is displayed: Create DOS partition or Logical DOS DriveSet active partition

      Written by: technoweird


      Delete Orkut Stuffs In Mass Using Tool " Mass Delete"
      Deleting Anything From Orkut Is a big problem for everyone who is using orkut ,as community owner,moderator or as Simple user,Deleting anything one by one can also take a lot of time .By Viewing All the above points one of the user has invented mass delete tool that delete testimonials, messages, topics and even friends in Mass.These Tool can be used by anyone ,but he has to follow simple steps for that,First Of All users will need to install Firefox as well as GreaseMonkey, and for the visually stimulated (that includes me) here are some quick screen shots on how useful this hack may be for some usersInstall Grease Monkey in case you don't have it - Click Here After Installing GreaseMonkey, search for the OMDT link.Clicking on it will open a new mini window which allows you to adjust how fast you want the deleted friends, testimonials, etc. to take place..Next, select Yes to turn on the script (other wise it will not work)..The options below simply ask if you want to be alerted on yo

      Written by: Orkut Tricks Tips And Latest Blogs


      How to create and delete invisible folder
      Before I'll explain you this trick, I want to warn you that in my Vista, I've got sweat to find way to delete that's invisible folder. So that, if you don't want to mess with your computer, please don't try this trick.For all those daredevils, here is the procedure:1. Create New folder.2. Right-click on it, then choose rename.3. After that delete the name New Folder and press Alt+01604. That'll create invisible space in the folder name, press Enter.5. Right-click that folder, choose properties, then go to Customize tab6. Click Change Icon and then choose invisible icon as in below screenshot.That's it. It's done.Diggin's Tips : The drama part is that if you want to delete that folder, it won't work in some Windows. For my Vista, it doesn't work. So I have to use DelinvFile to get rid of that stupid invisible folder. That's why I warn you before I start.

      Written by: DIGG - IN


      How to edit or delete your blog’s previous post?
      When you want to edit or delete any of your previous post or draft (the post that you haven’t published yet), click on the Posts link on your dashboard. Now you can see a list of your published and unpublished (drafts) posts. You can edit or delete any of your posts. Other interesting feature is that you can add or apply Labels or post tags (which are very important as the keywords of your posts for search engines) to your posts easily by selecting multiple posts at a time!

      Written by: Learn how to blog - Step by Step Blogging


      Delete A File That Is Seemingly "Undeletable" in Xp
      Delete A File That Is Seemingly "Undeletable" in XpEvery so often you'll run across a file you want to delete that defies every effort made to send it packing. There are no guarantees when you encounter this situation, but give the following procedure a try and see what happens.Open a Command Prompt Window via Start | All Programs | Accessories | Command Prompt Leave the Command Prompt Window open and close all other open programs.Go to Start | Run and type [taskmgr.exe] in the Open: line. Click OK. In the Image Name column, highlight [explorer.exe] and click End Process button. Very Important: Leave Task Manager open and return to the Command Prompt Window In the Command Prompt window, navigate to the directory that contains the file to be deleted. At the command prompt type DEL where is the file to be deleted. In the example above, the file TestFile is being delet

      Written by: Saim's Blog


      How to delete undeletable files
      How many times have we been annoyed by that messages? Oh yeah, there are many alternatives of above such as :Cannot delete file: Access is deniedThere has been a sharing violation.The source or destination file may be in use.The file is in use by another program or user.Make sure the disk is not full or write-protected and that the file is not currently in use.I've got two ways to solve this problem.First way : If you're not tech buddy, you should go to second way.Go to Start menu -->> Run -->> type cmd and press enter (this will open command prompt)After that press Ctrl+Alt+Del to bring up task managerGo to Process tab, find explorer.exe, then click End Process.Your Taskbar will disappear.Go back to the Command prompt you just left opened.Browse folder or file you want to delete. Delete file with del command and remove directory with rmdir command.After that, in the task manager, choose File -->> New Task (Run..)Then type explorer.exe.Your taskbar will appear again.Second way : I re

      Written by: Bridge to Nova


      Delete your Inbox messages rapidly in Orkut
      As Orkut is being upgraded, all of code changes have also occured in it. Many of the old scripts don’t work now, such as scrapbook flooder, testimonial flooder, deleting community topics etc. And the number of spam messages you get in your Orkut inbox is also increasing rapidly. People send you community invitations, and all land in your Orkut inbox. I was quite surprised to see my inbox. It said 2,295 unread messages. Deleting all one by one would take a lot of time. Recently, I found a very cool Greasemonkey script to speed up the deletion process. Requirements: Like always, this Greasemoneky also has the same requirements like all the others: Download and install Firefox Download and install Greasemonkey Well, it’s called Orkut Message Deleter. A very nice and easy-to-use script… Actually, there is nothing to do in this script. It does everything itself . All you have to do is download this script, and install it with your Greasemonkey. Make sure this script

      Written by: Sizzled Core


      Blogger : Delete Post When You Just Need Image URL
      Isu penggunaan blogger.com sebagai media penyimpanan file gambar memang mengundang decak kekaguman. Meski memiliki banyak "saudara kembar", tak sedikit menghapus keraguan akan keampuhan media penyimpanan file di blogger.com. Sebut saja nama-nama seperti Googlepages, Hello, Picasa yang masih terhitung akrab di telinga (dan mungkin juga hapal seberapa besar kekuatan daya tampung masing-masing

      Written by: edittag


      How to Delete Others Myspace Accounts
      This is a really bastard thing to do, or funny as hell depending on what side you’re on.(One man’s terrorist is another’s freedom fighter no?)So I’m assuming all that read this are reading purely for the educational aspect right?(Say Yes)Ok, to make this short, the flaw is simple. It’s not a flaw in myspace, but in the way it’s setup. It’s not really a flaw at all, but oh well. It’s just the same as a mailing list. You sign up with your email, and unsubscribe by sending an email to an unsubscribe address with “unsubscribe” in the text field. When someone wants to legitimately unsubscribe to myspace, they open the form that does such, and unsubscribe. All that does is send an email from you (your account) to an email address that myspace uses for deleting accounts.All you need to do is send an email from the victim’s email, to the server email used for removing accounts. This is very easy to do, very, no elite shell code programming involved or anything else.The em

      Written by: & Tricks are here


eXTReMe Tracker