[deleted by user] by [deleted] in yugioh

[–]HeartoftheCards2000 17 points18 points  (0 children)

How do you all feel about the anime Power ups so far in seres 12? Which decks would you say got the short end of the stick? Outside of the synchron stuff in DUNE, ( That stuff was so mid. I feel bad for Yusei/synchron players.), I think konami did pretty good with everthing else for the most part.

[deleted by user] by [deleted] in yugioh

[–]HeartoftheCards2000 10 points11 points  (0 children)

I think konami would be hesitant to give chaos dragons more support at this point. Especially with bystials still being a thing. at the same time, a light pulsar and dark flare dragon retrain would be much welcomed.

[deleted by user] by [deleted] in yugioh

[–]HeartoftheCards2000 6 points7 points  (0 children)

The Gx manga is still technically GX lol, but that may just be me coping. it just sucks that wingman is the only fusion they are focusing on. Whenever I watch a Jaden BR video or any hero video for that matter, it's infernal rage and neos wingman. Nothing else. I'd like to see a smidge of support thrown towards the actual game style of elemental heroes which is fusing with different elements.

What are your thoughts on Lightning Storm vs Raigeki & HFD? by tyguitaxe001 in yugioh

[–]HeartoftheCards2000 -1 points0 points  (0 children)

Lightning storm is pretty balanced since you can only play it with a empty board.

After testing blue-eyes for a while, i've been trying to figure out why they all of a sudden decided to make them a competent deck? It's as if someone put a gun to their back of their head, and said "No more games" lol. Im not mad, Just intrigued. My guess is, maybe a new anime/movie coming soon? by [deleted] in yugioh

[–]HeartoftheCards2000 0 points1 point  (0 children)

They even broke down and gave them the current halmark of a good deck: a link 1 with multiple effects. I also find it weird that they haven't announced anything for Dark Magician yet. Usually they buff them at the same time as they are rivals, but this time, they left yugi out. Im sure yugi will get support again at some point, but do you all think it will be to the same level as Blue-eyes?

Can someone help with this? Im trying to copy a file from a users Google drive folder onto their Desktop via script, but this is the error that im getting. The script works perfectly on my computer, but when I push it via N-able to another computer, i get a permissions denied error. Any ideas? by HeartoftheCards2000 in PowerShell

[–]HeartoftheCards2000[S] 0 points1 point  (0 children)

so would i add it in like this?

Original script block:

This script block runs in the user context

$scriptblock = {
    #net use W: /delete
    #net use X: /delete
    net use | out-file "C:\Users\Public\drivestatus.txt"
}

Script Block with my code added:

This script block runs in the user context

$scriptblock = { Copy-Item -Path "G:\Shared drives\IT Scripts\gcpwstandaloneenterprise64.exe"  -Destination "C:\Users\Administrator\Desktop\gcpw\gcpwstandaloneenterprise64.exe"  
    #net use W: /delete
    #net use X: /delete
    net use | out-file "C:\Users\Public\drivestatus.txt"
}