SoundManCO

- friends
144 link karma
1,339 comment karma
send messageredditor for
what's this?

TROPHY CASE

  • dust

Solar eclipse as seen from space by gavilanpolleroin pics

[–]SoundManCO 0 points1 point ago

Link to the original post? Is a high res version of this out there?

Fuck you OCD, fuck you, they're all there. by SoundManCOin pics

[–]SoundManCO[S] 0 points1 point ago

I have a hard time with things not being in order. when I saw the odometer I felt as though the whole car was taunting me and playing with my OCD. I had to drive it around and reset the trip meter right after I took the pic.

Fuck you OCD, fuck you, they're all there. by SoundManCOin pics

[–]SoundManCO[S] -1 points0 points ago

I looked down and my OCD meter pegged.

Anyone ever noticed this in the bottom right corner of Reddit? by JadenGHin pics

[–]SoundManCO 0 points1 point ago

Because now you know.

Anyone ever noticed this in the bottom right corner of Reddit? by JadenGHin pics

[–]SoundManCO 0 points1 point ago

Yes, yes I have noticed it there.

I give you, my Holy Grail of Odometers. by sje118in pics

[–]SoundManCO 0 points1 point ago

I posted this a couple days ago and got no love for it.

Holy fuck! by Mind_Virusin pics

[–]SoundManCO -3 points-2 points ago

That's a brake line not a plug wire. You can see a section of the same on the drivers side.

Not 80085 but it is in order by SoundManCOin pics

[–]SoundManCO[S] 0 points1 point ago

Not shooting for the front page, I just felt at ease with my OCD for a mile.

Danny talks briefly about the new album by honkimonin ToolBand

[–]SoundManCO 3 points4 points ago

Justin has been coming in with tons of rifs.

As a bass player that loves to play Tools music I can't tell you how happy this makes me.

Just called out a wealthy Christian family in Wal-Mart. Got applause. by [deleted]in atheism

[–]SoundManCO -2 points-1 points ago

You sir get all of y upvotes. Well played.

IWTL how to teach myself bass guitar by willofdukesin IWantToLearn

[–]SoundManCO 1 point2 points ago

Head over to /r/Bass and ask away over there about gear. There are lots of really helpful people over there. Recently someone asked about bass books that would be good to learn from. That thread is here You may find some of the information in it helpful.

My first bass was an ESP Surveyor that I got secondhand. I still have it and love that bass. I ran through a DI box or headphones or a guitar amp for a few years before I broke down and bought a real bass amp. Just keep in mind that if you buy junk it will sound like junk and you will not want to play it.

DNS error same time daily by Snowfox17in techsupport

[–]SoundManCO 1 point2 points ago

Have you flushed your dns? IPCONFIG /FLUSHDNS should do it.

What could cause you to wake up and feel temporarily paralyzed? by string97beanin AskReddit

[–]SoundManCO -1 points0 points ago

Work / my job does that to me.

DNS error same time daily by Snowfox17in techsupport

[–]SoundManCO 1 point2 points ago

Try using googles public DNS servers. This will walk you through setting it up http://code.google.com/speed/public-dns/ If nothing else it will eliminate your isp's DNS servers.

This is the last picture he ever took by Txein funny

[–]SoundManCO -2 points-1 points ago

This is the last picture he ever took

And his last.

What's the most impressive animal you could defeat in a cage match? by squirpyin AskReddit

[–]SoundManCO 2 points3 points ago

Location:It's a cage fight (like the [1] octagon )

Your image is a hexagon. This will change everything.

Input file of names from AD, need to use robocopy to copy home folders. Yup, I am a n00b to PS, please tell me where I am going wrong with this by SoundManCOin PowerShell

[–]SoundManCO[S] 0 points1 point ago

I tried that and PS halted in that line and complained about it. I also tried the '\' as you had added to the script and I tried "\" and it wasn't happy about it.

What is the drawback to using the variable? Keep in mind I am a total n00b to PS and scripting.

Input file of names from AD, need to use robocopy to copy home folders. Yup, I am a n00b to PS, please tell me where I am going wrong with this by SoundManCOin PowerShell

[–]SoundManCO[S] 1 point2 points ago

This was pretty much on the money. I had to treat the \ a little differently as it wouldn't insert with single or double quotes. Using $backslash and declaring it did the trick.

Now I need to work on a script to verify the names in the text file and to verify that there is a home folder present and that there are no blank lines in the file before it is processed.

I had to copy off over 500 folders with this today and it worked like a charm. Thanks again!

$inFile = read-host "Please enter the complete path and file name to be used" 

$outdest = read-host "Please enter the detination path" 

$names = Get-Content $inFile

$backslash = "\"

foreach($name in $names)
{
[array]$list += Get-ADUser -Filter {(City -like "Fort someplace" -and Name -like $name)} -Property SamAccountName,HomeDirectory
}

for ($i=0; $i -lt $($list.Length); $i++)
{

    $source = $list[$i].HomeDirectory
    $SamAccountName = $list[$i].SamAccountName
    $dest= "$outdest$backslash$SamAccountName"
    $what = @("/COPYALL","/B","/SEC","/MIR")
    $options = @("/R:0","/W:0","/NFL","/NDL","/MT:50")
    $cmdArgs = @("$source","$dest",$what,$options)
    robocopy @cmdArgs
}

Input file of names from AD, need to use robocopy to copy home folders. Yup, I am a n00b to PS, please tell me where I am going wrong with this by SoundManCOin PowerShell

[–]SoundManCO[S] 0 points1 point ago

ROBOCOPY allows multi-threading and is incredibly fast in my environment, it is faster than NDMPCOPY right from the filers. It also maintains the ACL's and copies files and folders that have had the administrators group removed.

view more: next