In my user folder (C:/Users/myAccount/) theres a set of interesting hidden files that I've never seen before (right now it's a fresh install of Windows 7 Ultimate).
These are:
NTUSER.DAT,
ntuser.dat.LOG1,
ntuser.dat.LOG2, and
NTUSER.DAT(whole chain of numbers and letters).TM.bif, NTUSER.DAT(whole chain of numbers and…
I've got a SSD as my primary hard drive. I have an external HDD hard drive which I use to
store downloaded files. At the moment I have to delete 80 GB of that external hard drive. I realized that if I delete
it normally, it would probably go to the recycle bin of my SSD.
I am wondering how I can delete the files on…
Why, when I delete some files in Samba, does it not delete them but instead merely change their filename from filename.txt to ._filename.txt?
This is not the behaviour one would expect when "deleting" a file, so I'm wondering if there's an option I forgot to set somewhere in the samba config.
It does this to some…
This blog post is written in response to T-SQL Tuesday hosted by Jorge Segarra (aka SQLChicken). I have been very active using these Merge operations in my development. However, I have found out from my consultancy work and friends that these amazing operations are not utilized by them most of the time. Here is my…
By inadvertance, I've created a file called -r into my home directory.
Please don't ask me how and why, I don't recall.
But the fact is that now I cannot get rid of it :
rm -rf
rm: missing operand
Try 'rm --help' for more information.
Other try :
rm /-/r
rm: cannot remove ‘/-/r’: No such file or directory
…
I'm on Win7. I have a large number of of large .bin files, totaling 183GB, in my Temporary Internet Files folder. They all seem to come from video sharing sites like youtube. The files are invisible in Explorer even after allowing viewing of hidden files. The only way I can see them is by issuing "dir /fs" on the…
Many clients are using custom stored procedures or third party tools to backup databases in production environments instead of using database maintenance plans. One of the things that you need to do is to maintain the number of backup files that exist on disk, so you don't run out of disk space. There are…
On a dual monitor setup, how can I set which monitor the ALT-TAB (or ALT+`) interfaces appear?
Right now, it's flying all over the place, possibly based on on which app is focused? I'm not sure. In any case this is not useful to me. I spend 80% of my time staring at the monitor in front of me, and…
I used to have a dual boot in one of my hard disk drives - Ubuntu and Windows 7. Then, I added a SSD which is now my main hard disk drive, and I'm using it for Windows 7 completely, keeping Ubuntu in the old HD. I restored the Grub so everything works ok, except for one thing.
Everytime I update…
How do I make it stop after a certain amount of rows?
I've taken a VBA course and my teacher explained how to delete empty rows. I'm now trying to put this in place but my macro isn't stopping. I thought I had limited it to 200 rows.
I'm missing something important. Any pointers much…
I am writing a simple program to understand the new and delete operator overloading. How is the size parameter passed into the new operator?
For reference, here is my code:
#include<iostream>
#include<stdlib.h>
#include<malloc.h>
using namespace std;
class loc{
…
I have 2 models
class Vhost(models.Model):
dns = models.ForeignKey(DNS)
user = models.ForeignKey(User)
extra = models.TextField()
class ApplicationInstalled(models.Model):
user = models.ForeignKey(User)
added = models.DateTimeField(auto_now_add=True)
app =…
I'm trying to delete a Image file in WPF, but WPF locks the file.
<Image Source="C:\person.gif" x:Name="PersonImage">
<Image.ContextMenu>
<ContextMenu>
<MenuItem Header="Delete..." x:Name="DeletePersonImageMenuItem"…
I need some help, and before we get going, I know it is probably not best practice, but I am doing some maintenance to an existing site and need to accomplish the following for a fix.
<a rel="lightbox" href="site.com" title="a generated title"><img…
I finished an app for a client. After talking for a bit he would like me to do an additional app or recommend one for their kiosk.
The client would like a way to prevent the computer from shutting down. They like to disable Ctrl+Alt+Delete (also so processes…
Hello!
I have a webbrowser control in my program and what I want to do is to delete all the cookies stored in my computer.
The problem is that for example I'm in some site, and then I decide I want to delete all the cookies, so I do it by the command "Kill()"…
I need an MySQL Skript which does the following:
delete chunks of the database until it has deleted all link_id's greater then 10000
exmaple:
x = 10000
DELETE FROM pligg_links WHERE link_id > x and link_id < x+10000
x = x + 10000
...
So it would…
Hi all,
How can I pop up a message box to confirm a delete, from inside a method?
Normally i would just use the following line in my button:
OnClientClick="return confirm('Are you sure you want to delete this comment?');"
However this delete method can…
Hi all I have this line in my php code
$insert = "DELETE FROM allocation_table WHERE job = '$jobnumber' " ;
Mysql_query ($insert) ;
The problem is it will remove all the values from the the one line in my table but not the entry…
I have a SQLite DB that is set up so when I delete a Person the delete is cascaded. This works fine when I manually delete a Person (all records that reference the PersonID are deleted). But when I use Entity Framework to delete the Person I get an…
I am using the following to delete route53 records. I get no error messages.
conn = Route53Connection(aws_access_key_id, aws_secret_access_key)
changes = ResourceRecordSets(conn, zone_id)
change = changes.add_change("DELETE",sub_domain, "A",…
<p><span class="linky"><a href="deletephone.php?id=' . $row['id'] . '">Delete Phone</a></span></p><br />
I have the above code that I am using to link to a delete script.
I want to somehow…