ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Backup File Server to DAS

    Scheduled Pinned Locked Moved IT Discussion
    dasstoragebackupfile server
    497 Posts 13 Posters 381.9k Views
    Loading More Posts
    • 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.
    • dafyreD
      dafyre @IT-ADMIN
      last edited by

      @IT-ADMIN The worst case scenario is that you P2V, and if it triggers a windows activation on the V, you shut it down and bring the P back up and nothing has changed.

      IT-ADMINI 1 Reply Last reply Reply Quote 1
      • IT-ADMINI
        IT-ADMIN @dafyre
        last edited by

        @dafyre said:

        @IT-ADMIN The worst case scenario is that you P2V, and if it triggers a windows activation on the V, you shut it down and bring the P back up and nothing has changed.

        wow, like usual your suggestion are very awesome, thank you @dafyre 😉

        1 Reply Last reply Reply Quote 0
        • JaredBuschJ
          JaredBusch
          last edited by

          @Dashrender every single P2V i have ever done has caused Windows to drop its authentic status and require reactivation. I have never seen it stay activated.

          DashrenderD IT-ADMINI scottalanmillerS 3 Replies Last reply Reply Quote 0
          • IT-ADMINI
            IT-ADMIN @Dashrender
            last edited by

            @Dashrender said:

            You asked about restoring your backup onto an identical server, that too could trigger a re-authorization prompt.

            All those things said, you weren't worried about them yesterday, I wouldn't be worried about them today (and by you I mean your company).

            I'd do the P2V following the general steps I mentioned above. The worst that happens is you spent some hours and gained the knowledge that it wouldn't work.. .but at best, you've migrated everything to a VM, and freed up a server for something else.

            thank you very much for your clarification

            1 Reply Last reply Reply Quote 0
            • DashrenderD
              Dashrender @JaredBusch
              last edited by

              @JaredBusch said:

              @Dashrender every single P2V i have ever done has caused Windows to drop its authentic status and require reactivation. I have never seen it stay activated.

              OK - I've only done one, about 8 years ago.. so I just don't recall.

              1 Reply Last reply Reply Quote 0
              • IT-ADMINI
                IT-ADMIN @JaredBusch
                last edited by

                @JaredBusch said:

                @Dashrender every single P2V i have ever done has caused Windows to drop its authentic status and require reactivation. I have never seen it stay activated.

                i get shocked, my dream to visualize is broken 😞

                JaredBuschJ DashrenderD scottalanmillerS 3 Replies Last reply Reply Quote 0
                • JaredBuschJ
                  JaredBusch @IT-ADMIN
                  last edited by

                  @IT-ADMIN said:

                  @JaredBusch said:

                  @Dashrender every single P2V i have ever done has caused Windows to drop its authentic status and require reactivation. I have never seen it stay activated.

                  i get shocked, my dream to visualize is broken 😞

                  Are you servers licensed now? I thought they were. I thought it was only your desktop stuff that was not licensed.
                  There is no reason the key should fail to reactivate on the new (virtual) hardware.

                  IT-ADMINI 1 Reply Last reply Reply Quote 0
                  • DashrenderD
                    Dashrender @IT-ADMIN
                    last edited by

                    @IT-ADMIN said:

                    i get shocked, my dream to visualize is broken 😞

                    FYI, it's virtualize, not visualize I'm guessing your browser's spell check doesn't know the word. you need to add it.

                    IT-ADMINI 1 Reply Last reply Reply Quote 0
                    • IT-ADMINI
                      IT-ADMIN @Dashrender
                      last edited by

                      @Dashrender said:

                      @IT-ADMIN said:

                      i get shocked, my dream to visualize is broken 😞

                      FYI, it's virtualize, not visualize I'm guessing your browser's spell check doesn't know the word. you need to add it.

                      hhhhh yes you are right, my auto-corrector doesn't know virtualize

                      1 Reply Last reply Reply Quote 0
                      • IT-ADMINI
                        IT-ADMIN @JaredBusch
                        last edited by

                        @JaredBusch said:

                        @IT-ADMIN said:

                        @JaredBusch said:

                        @Dashrender every single P2V i have ever done has caused Windows to drop its authentic status and require reactivation. I have never seen it stay activated.

                        i get shocked, my dream to visualize is broken 😞

                        Are you servers licensed now? I thought they were. I thought it was only your desktop stuff that was not licensed.
                        There is no reason the key should fail to reactivate on the new (virtual) hardware.

                        unfortunately i don't have the windows server 2008 R2 key, when i start working in this company i found 2 windows servers that are activated but i don't have the key 😞
                        so i think there is no chance to activate the V again

                        JaredBuschJ 1 Reply Last reply Reply Quote 0
                        • JaredBuschJ
                          JaredBusch @IT-ADMIN
                          last edited by JaredBusch

                          @IT-ADMIN said:

                          @JaredBusch said:

                          @IT-ADMIN said:

                          @JaredBusch said:

                          @Dashrender every single P2V i have ever done has caused Windows to drop its authentic status and require reactivation. I have never seen it stay activated.

                          i get shocked, my dream to visualize is broken 😞

                          Are you servers licensed now? I thought they were. I thought it was only your desktop stuff that was not licensed.
                          There is no reason the key should fail to reactivate on the new (virtual) hardware.

                          unfortunately i don't have the windows server 2008 R2 key, when i start working in this company i found 2 windows servers that are activated but i don't have the key 😞
                          so i think there is no chance to activate the V again

                          save this as displaykey.vbs and then double click on it.

                          Set WshShell = CreateObject("WScript.Shell")
                          MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))
                          
                          Function ConvertToKey(Key)
                          Const KeyOffset = 52
                          i = 28
                          Chars = "BCDFGHJKMPQRTVWXY2346789"
                          Do
                          Cur = 0
                          x = 14
                          Do
                          Cur = Cur * 256
                          Cur = Key(x + KeyOffset) + Cur
                          Key(x + KeyOffset) = (Cur \ 24) And 255
                          Cur = Cur Mod 24
                          x = x -1
                          Loop While x >= 0
                          i = i -1
                          KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
                          If (((29 - i) Mod 6) = 0) And (i <> -1) Then
                          i = i -1
                          KeyOutput = "-" & KeyOutput
                          End If
                          Loop While i >= 0
                          ConvertToKey = KeyOutput
                          End Function
                          
                          1 Reply Last reply Reply Quote 1
                          • JaredBuschJ
                            JaredBusch
                            last edited by

                            I would still test a P2V in such a way that your current server could still be turned back on in case it does not activate.

                            IT-ADMINI 1 Reply Last reply Reply Quote 1
                            • IT-ADMINI
                              IT-ADMIN
                              last edited by

                              so i will past this in a text file and save as displaykey.vbs and run it on my server, isn't it ??

                              DustinB3403D 1 Reply Last reply Reply Quote 0
                              • DustinB3403D
                                DustinB3403 @IT-ADMIN
                                last edited by

                                @IT-ADMIN Yes.

                                1 Reply Last reply Reply Quote 0
                                • IT-ADMINI
                                  IT-ADMIN @JaredBusch
                                  last edited by

                                  @JaredBusch said:

                                  I would still test a P2V in such a way that your current server could still be turned back on in case it does not activate.

                                  can i run this on my windows 7 for trial, because i'm fear this script would do something on the server

                                  DustinB3403D 1 Reply Last reply Reply Quote 0
                                  • IT-ADMINI
                                    IT-ADMIN
                                    last edited by

                                    it is still production time

                                    DashrenderD 1 Reply Last reply Reply Quote 0
                                    • DustinB3403D
                                      DustinB3403 @IT-ADMIN
                                      last edited by

                                      @IT-ADMIN Yeah you can attempt the P2V on any system you have so you know how it is performed.

                                      Ideally running it on your servers should only be done once you're comfortable doing that.

                                      1 Reply Last reply Reply Quote 1
                                      • dafyreD
                                        dafyre
                                        last edited by dafyre

                                        @DustinB3403 -- Will that script work on any version of WIndows for the most part?

                                        @IT-ADMIN -- You can run it on Windows 7 and see. That script doesn't actually change any thing on your computer. It just looks at some stuff in the registry and does some math things to get the key out.

                                        JaredBuschJ 1 Reply Last reply Reply Quote 0
                                        • DashrenderD
                                          Dashrender @IT-ADMIN
                                          last edited by

                                          @IT-ADMIN said:

                                          it is still production time

                                          Yes you can run this on Windows 7 first.

                                          all this script does is pull the cd key from the computer and convert it back into the key that was typed in during install.

                                          1 Reply Last reply Reply Quote 0
                                          • JaredBuschJ
                                            JaredBusch @dafyre
                                            last edited by JaredBusch

                                            @dafyre said:

                                            @DustinB3403 -- Will that script work on any version of WIndows for the most part?

                                            It works on any version of Windows I have ever ran it on. Vista, 7, 8, and 10

                                            Note: Windows 10 upgraded devices all use the same fake key. So there is no point in running it on Windows 10 unless it was installed with its own key.

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 10
                                            • 11
                                            • 12
                                            • 13
                                            • 14
                                            • 24
                                            • 25
                                            • 12 / 25
                                            • First post
                                              Last post