What Are You Doing Right Now
-
New problem, install veeam free on a spare server.
Added my Hyper-V host and tried doing a VeeamZip on a Linux VM. Failed. Rebooted all 3 (i.e. Veeam Server, Hyper-V host and VM) still no go.
Shutdown the VM and it works
This is the error:-24/08/2018 13:07:17 :: Unable to allocate processing resources. Error: Job failed ('Checkpoint operation for 'VMNAME' failed. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)
Production checkpoints cannot be created for 'VMNAME'. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)'). Error code: '32770'.
Failed to create VM recovery snapshot, VM ID 'ed67a2c9-56f6-429d-ad2e-89ff8375cde3'.Getting the feeling instead of being like a "Ducks Arse" i should look at maybe a "paid" solution that will be Hyper-V and ESXi
-
@hobbit666 there are several possible causes for this, found here. (granted its from 2014 but I doubt the reasoning for the error would change)
Look at the resolutions on that page and see if you can't fix the issue before jumping to the conclusion of "I have to pay for something to have it work". When it clearly works.
I use VeeamZip to backup a few VM's here and it works just fine.
-
Dealing with toll fraud, I mis-configured a firewall rule and left a gateway wide open. Won't do that again
-
@hobbit666 said in What Are You Doing Right Now:
New problem, install veeam free on a spare server.
Added my Hyper-V host and tried doing a VeeamZip on a Linux VM. Failed. Rebooted all 3 (i.e. Veeam Server, Hyper-V host and VM) still no go.
Shutdown the VM and it works
This is the error:-24/08/2018 13:07:17 :: Unable to allocate processing resources. Error: Job failed ('Checkpoint operation for 'VMNAME' failed. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)
Production checkpoints cannot be created for 'VMNAME'. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)'). Error code: '32770'.
Failed to create VM recovery snapshot, VM ID 'ed67a2c9-56f6-429d-ad2e-89ff8375cde3'.Getting the feeling instead of being like a "Ducks Arse" i should look at maybe a "paid" solution that will be Hyper-V and ESXi
Is the Linux Integration Services installed on those VMs?
-
Hope everyone has a good Friday!
-
The unread bug is back it seems.
-
@dustinb3403 said in What Are You Doing Right Now:
The unread bug is back it seems.
Nope. Just refresh your browser.
-
Busy morning already. How is everyone?
-
@hobbit666 said in What Are You Doing Right Now:
After sleeping on it and taking everything in, i've decided to give Hyper-V another chance (can some confirm that (i think i've seen this mentioned) hyper-v can replicate to another hyper-v server for FREE?)
Yes, Hyper-V (and its features) are all free.
-
Somtimes I love PowerShell
-
@jaredbusch said in What Are You Doing Right Now:
@dustinb3403 said in What Are You Doing Right Now:
The unread bug is back it seems.
Nope. Just refresh your browser.
Yeah cause I didn't try that. . .
-
@scottalanmiller said in What Are You Doing Right Now:
Busy morning already. How is everyone?
Some Office 365 Customers getting this
https://twitter.com/Office365Status/status/1032990569792978945And patching networking devices.
-
@eddiejennings said in What Are You Doing Right Now:
Somtimes I love PowerShell
Apparently -erroraction doesn't work with get-aduser and such... I use a try/catch block in my code.
-
@nerdydad He was being facetious
-
@jmoore said in What Are You Doing Right Now:
@nerdydad He was being facetious
feces what?
Oh PowerShell. yeah :pile_of_poo:
-
Going cross eyed from repeatedly doing this on 30 folders.
Now on to Client 2
-
@jaredbusch said in What Are You Doing Right Now:
Going cross eyed from repeatedly doing this on 30 folders.
Now on to Client 2
Note:
CTRL+R
is my friend... -
Reading a FUN FAQ FRIDAY email from HR and the subject line says HR FFF!!!
-
@black3dynamite HR at my old company said they were there to answer any of our questions. The HR director was a girl I went to elementary school with. I used to e-mail her complex, morally grey scenarios expecting her to answer my questions. She did a lot of the time. Learned a lot about how Jill thought. lol
-
@dafyre said in What Are You Doing Right Now:
@eddiejennings said in What Are You Doing Right Now:
Somtimes I love PowerShell
Apparently -erroraction doesn't work with get-aduser and such... I use a try/catch block in my code.
A little Googling and testing returned this.
Get-ADUser -filter { samaccountname -eq $SAM }
if$SAM
has a username that doesn't exist, there's no error message. Just an empty value, which I can then use in the forthcomingif
statement.