dll files
-
my boyfriend has put parental locks on our desktop. He is using multiple IP addresses on his laptop as well as multiple wi fi addresses. He has turned all files into dll and exe so they can not be ooened or read. Feeling stupid, but what does all this mean?
It means you need a new boyfriend.
Will Rogers never met me.
-
my boyfriend has put parental locks on our desktop. He is using multiple IP addresses on his laptop as well as multiple wi fi addresses. He has turned all files into dll and exe so they can not be ooened or read. Feeling stupid, but what does all this mean?
Try copying some of the (so called) dll or exe files to a new folder and then try renaming them to .jpg, .gif or .png, or possibly .doc, .txt or .zip and see if the file can be opened when renamed with a new extension. And then have a good long talk with him starting with "Why?".
cheers Chris Maunder
-
my boyfriend has put parental locks on our desktop. He is using multiple IP addresses on his laptop as well as multiple wi fi addresses. He has turned all files into dll and exe so they can not be ooened or read. Feeling stupid, but what does all this mean?
My advice. Date a human. If he doesn't trust you, he doesn't deserve you. If he is hiding things from you, he doesn't deserve you.
-
my boyfriend has put parental locks on our desktop. He is using multiple IP addresses on his laptop as well as multiple wi fi addresses. He has turned all files into dll and exe so they can not be ooened or read. Feeling stupid, but what does all this mean?
Like what Mr. Maunder says. i'd rename some as .txt then open in notepad and see if you can work out what type of file they really are. Assuming he's really changed them and isn't just playing some prank that he can undo. As soon as you can get access to email - send him one.
PooperPig - Coming Soon
-
Like what Mr. Maunder says. i'd rename some as .txt then open in notepad and see if you can work out what type of file they really are. Assuming he's really changed them and isn't just playing some prank that he can undo. As soon as you can get access to email - send him one.
PooperPig - Coming Soon
I'm curious - is she a developer or did she just stumble here looking for a general tech support site ? :P
-
I'm curious - is she a developer or did she just stumble here looking for a general tech support site ? :P
What makes you assume the OP is a she?
Quad skating his way through the world since the early 80's... Booger Mobile - My bright green 1964 Ford Falcon - check out the blog here!! | If you feel generous - make a donation to Camp Quality!!
-
What makes you assume the OP is a she?
Quad skating his way through the world since the early 80's... Booger Mobile - My bright green 1964 Ford Falcon - check out the blog here!! | If you feel generous - make a donation to Camp Quality!!
Probability, but you're right, it's not a certainty.
-
my boyfriend has put parental locks on our desktop. He is using multiple IP addresses on his laptop as well as multiple wi fi addresses. He has turned all files into dll and exe so they can not be ooened or read. Feeling stupid, but what does all this mean?
If those files are big size(like 500+MB), probably that'll be video files. Try Rename those files using video file extensions as Chris said(Ex. File1.dll -> File1.avi, BTW use VLC player to open video files). Agree with others, he's not a boyfriend. Get rid of him
thatraja
-
my boyfriend has put parental locks on our desktop. He is using multiple IP addresses on his laptop as well as multiple wi fi addresses. He has turned all files into dll and exe so they can not be ooened or read. Feeling stupid, but what does all this mean?
Member 11013912 wrote:
my boyfriend
Member 11013912 wrote:
what does all this mean
You will get lots of responses - ignore them all.
Peter Wasser "The whole problem with the world is that fools and fanatics are always so certain of themselves, and wiser people so full of doubts." - Bertrand Russell
-
my boyfriend has put parental locks on our desktop. He is using multiple IP addresses on his laptop as well as multiple wi fi addresses. He has turned all files into dll and exe so they can not be ooened or read. Feeling stupid, but what does all this mean?
If there's a file called 2g1c.dll I strongly advise you to not try to look at that. Believe me, it's better that way. Things that have been seen cannot be unseen. Cheers!
"I had the right to remain silent, but I didn't have the ability!"
Ron White, Comedian
-
my boyfriend has put parental locks on our desktop. He is using multiple IP addresses on his laptop as well as multiple wi fi addresses. He has turned all files into dll and exe so they can not be ooened or read. Feeling stupid, but what does all this mean?
Change the boyfriend. And also the parental "solution". How the fuck to change all files into binaries?
-
Change the boyfriend. And also the parental "solution". How the fuck to change all files into binaries?
Easy:
string path = @"D:\Temp\";
string[] files = Directory.GetFiles(path, "*.*", SearchOption.AllDirectories);
foreach (string file in files)
{
string newPath = file.Substring(0, file.Length - Path.GetExtension(file).Length) + ".exe";
if (file != newPath)
{
File.Move(file, newPath);
}
}Mind you, you'll have to cope with the system files, and such like...
You looking for sympathy? You'll find it in the dictionary, between sympathomimetic and sympatric (Page 1788, if it helps)
-
my boyfriend has put parental locks on our desktop. He is using multiple IP addresses on his laptop as well as multiple wi fi addresses. He has turned all files into dll and exe so they can not be ooened or read. Feeling stupid, but what does all this mean?
-
Easy:
string path = @"D:\Temp\";
string[] files = Directory.GetFiles(path, "*.*", SearchOption.AllDirectories);
foreach (string file in files)
{
string newPath = file.Substring(0, file.Length - Path.GetExtension(file).Length) + ".exe";
if (file != newPath)
{
File.Move(file, newPath);
}
}Mind you, you'll have to cope with the system files, and such like...
You looking for sympathy? You'll find it in the dictionary, between sympathomimetic and sympatric (Page 1788, if it helps)
Thanks, I know *how to* do this. (And I'd prefer the much easier PathRenameExtension[^] instead of the buggy C# code - what happens if you have 1.txt and 1.exe and you rename 1.txt in 1.exe, for example?). I was talking about how dumb a solution would be to rename everything in .dll and .exe. I can't think a single reason to do this except an installer or update tool.
-
Thanks, I know *how to* do this. (And I'd prefer the much easier PathRenameExtension[^] instead of the buggy C# code - what happens if you have 1.txt and 1.exe and you rename 1.txt in 1.exe, for example?). I was talking about how dumb a solution would be to rename everything in .dll and .exe. I can't think a single reason to do this except an installer or update tool.
-
If there's a file called 2g1c.dll I strongly advise you to not try to look at that. Believe me, it's better that way. Things that have been seen cannot be unseen. Cheers!
"I had the right to remain silent, but I didn't have the ability!"
Ron White, Comedian
-
Easy:
string path = @"D:\Temp\";
string[] files = Directory.GetFiles(path, "*.*", SearchOption.AllDirectories);
foreach (string file in files)
{
string newPath = file.Substring(0, file.Length - Path.GetExtension(file).Length) + ".exe";
if (file != newPath)
{
File.Move(file, newPath);
}
}Mind you, you'll have to cope with the system files, and such like...
You looking for sympathy? You'll find it in the dictionary, between sympathomimetic and sympatric (Page 1788, if it helps)
-
If there's a file called 2g1c.dll I strongly advise you to not try to look at that. Believe me, it's better that way. Things that have been seen cannot be unseen. Cheers!
"I had the right to remain silent, but I didn't have the ability!"
Ron White, Comedian
-
2 guys 1 cow ?
~RaGE();
I think words like 'destiny' are a way of trying to find order where none exists. - Christian Graus Entropy isn't what it used to.
Rage wrote:
2 guys 1 cow ?
Close but no cigar! :rolleyes:
"I had the right to remain silent, but I didn't have the ability!"
Ron White, Comedian
-
2 guys 1 cow ?
~RaGE();
I think words like 'destiny' are a way of trying to find order where none exists. - Christian Graus Entropy isn't what it used to.