Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. dll files

dll files

Scheduled Pinned Locked Moved The Lounge
question
31 Posts 22 Posters 4 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Lost User

    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

    C Offline
    C Offline
    Christian Graus
    wrote on last edited by
    #10

    I'm curious - is she a developer or did she just stumble here looking for a general tech support site ? :P

    _ 1 Reply Last reply
    0
    • C Christian Graus

      I'm curious - is she a developer or did she just stumble here looking for a general tech support site ? :P

      _ Offline
      _ Offline
      _Damian S_
      wrote on last edited by
      #11

      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!!

      C 1 Reply Last reply
      0
      • _ _Damian S_

        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!!

        C Offline
        C Offline
        Christian Graus
        wrote on last edited by
        #12

        Probability, but you're right, it's not a certainty.

        1 Reply Last reply
        0
        • U User 10979712

          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?

          T Offline
          T Offline
          thatraja
          wrote on last edited by
          #13

          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

          Code converters | Education Needed | Improve EverythingNew

          1 Reply Last reply
          0
          • U User 10979712

            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?

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #14

            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

            1 Reply Last reply
            0
            • U User 10979712

              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?

              M Offline
              M Offline
              Manfred Rudolf Bihy
              wrote on last edited by
              #15

              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

              A R 2 Replies Last reply
              0
              • U User 10979712

                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?

                C Offline
                C Offline
                Cristian Amarie
                wrote on last edited by
                #16

                Change the boyfriend. And also the parental "solution". How the fuck to change all files into binaries?

                OriginalGriffO C 2 Replies Last reply
                0
                • C Cristian Amarie

                  Change the boyfriend. And also the parental "solution". How the fuck to change all files into binaries?

                  OriginalGriffO Offline
                  OriginalGriffO Offline
                  OriginalGriff
                  wrote on last edited by
                  #17

                  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)

                  "I have no idea what I did, but I'm taking full credit for it." - ThisOldTony
                  "Common sense is so rare these days, it should be classified as a super power" - Random T-shirt

                  C R 2 Replies Last reply
                  0
                  • U User 10979712

                    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?

                    J Offline
                    J Offline
                    JMK NI
                    wrote on last edited by
                    #18

                    It means your boyfriend's an idiot

                    1 Reply Last reply
                    0
                    • OriginalGriffO OriginalGriff

                      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)

                      C Offline
                      C Offline
                      Cristian Amarie
                      wrote on last edited by
                      #19

                      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.

                      L 1 Reply Last reply
                      0
                      • C Cristian Amarie

                        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.

                        L Offline
                        L Offline
                        Lost User
                        wrote on last edited by
                        #20

                        I didn't know of any reasons either, but now I do: to mess with your significant other.

                        1 Reply Last reply
                        0
                        • M Manfred Rudolf Bihy

                          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

                          A Offline
                          A Offline
                          Asgard25
                          wrote on last edited by
                          #21

                          Looked at it once, couldn't be unseen X| But got all my friends to look at it :laugh:

                          1 Reply Last reply
                          0
                          • OriginalGriffO OriginalGriff

                            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)

                            R Offline
                            R Offline
                            Rage
                            wrote on last edited by
                            #22

                            Or

                            C:>ren *.* *.jpg /s

                            Leaves the system files untouched (if they are attributed properly).

                            ~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.

                            1 Reply Last reply
                            0
                            • M Manfred Rudolf Bihy

                              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

                              R Offline
                              R Offline
                              Rage
                              wrote on last edited by
                              #23

                              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.

                              M B 2 Replies Last reply
                              0
                              • R Rage

                                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.

                                M Offline
                                M Offline
                                Manfred Rudolf Bihy
                                wrote on last edited by
                                #24

                                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

                                1 Reply Last reply
                                0
                                • R Rage

                                  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.

                                  B Offline
                                  B Offline
                                  Bassam Abdul Baki
                                  wrote on last edited by
                                  #25

                                  That's the (w)hole basis of the movie Human Centipede. Never seen 2G1C nor the centipede movies. Yes, it became a trilogy.

                                  Web - BM - RSS - Math - LinkedIn

                                  1 Reply Last reply
                                  0
                                  • U User 10979712

                                    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?

                                    R Offline
                                    R Offline
                                    realJSOP
                                    wrote on last edited by
                                    #26

                                    Move out. Your life is in danger. When SWAT busts down your door looking for whoever has access to that computer, they will shoot first, and not bother asking questions.

                                    ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                                    -----
                                    You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                                    -----
                                    When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                                    1 Reply Last reply
                                    0
                                    • C Christian Graus

                                      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.

                                      N Offline
                                      N Offline
                                      Nish Nishant
                                      wrote on last edited by
                                      #27

                                      I assume OP's in high school. her boyfriend is probably just hiding his extensive collection of porn. :-D

                                      Regards, Nish


                                      Check out 7 reasons C++ devs will love the VS 14 CTP by Nish Sivakumar Blog: voidnish.wordpress.com

                                      C 1 Reply Last reply
                                      0
                                      • U User 10979712

                                        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?

                                        M Offline
                                        M Offline
                                        MarkRHolbrook
                                        wrote on last edited by
                                        #28

                                        Sounds like you need to get your own computer, password protect it really well and never let him use it. He does sound like a controlling idiot. And how is it you knew he was using multiple IP addresses and WiFis?

                                        1 Reply Last reply
                                        0
                                        • N Nish Nishant

                                          I assume OP's in high school. her boyfriend is probably just hiding his extensive collection of porn. :-D

                                          Regards, Nish


                                          Check out 7 reasons C++ devs will love the VS 14 CTP by Nish Sivakumar Blog: voidnish.wordpress.com

                                          C Offline
                                          C Offline
                                          Christian Graus
                                          wrote on last edited by
                                          #29

                                          Yes, I'd guess the same

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups