What Are You Doing Right Now
- 
Just finished exercising. Now time for either House of Cards, Everquest, or MSCA study -- or a combination.
 - 
Picking up my 8yo from a friend’s birthday party.
 - 
Got to do some Exchange work this morning
 - 
@scottalanmiller said in What Are You Doing Right Now:
Kids are running around the house like lunatics.
I wish mine were that calm.
 - 
Loading up the car, about to drive to Dallas.
 - 
Tinkering with
DISMbefore heading out to D&D. - 
Heading the door, later people.
 - 
happy monday morning everyone. there's 3 words you don't see together often!
2 coffees in... - 
@siringo you must be high
 - 
@DustinB3403 said in What Are You Doing Right Now:
@siringo you must be high
i think the dementia is just a bit fired up this morning.
it's also overcast and threatening to rain, so a really fantastic monday morning! - 
@siringo ah you must be in the England area
 - 
@DustinB3403 said in What Are You Doing Right Now:
@siringo ah you must be in the England area
no, in the australia area.
 - 
@DustinB3403 said in What Are You Doing Right Now:
@siringo you must be high
@DennisLeary said in No Cure for Cancer (1993)
I'm high as a kite and my teeth are green, merry fucking Christmas!
 - 
@siringo said in What Are You Doing Right Now:
@DustinB3403 said in What Are You Doing Right Now:
@siringo ah you must be in the England area
no, in the australia area.
Ha. I was going off of your description of the weather.
I know . .
 - 
So my neighbor's son is a semi pro skater, and he and his friends made a video on Halloween featuring our new song. Good stuff.
 - 
Discovering curious things about PowerShell remoting.
[hypervlab01]: PS D:\Nano> echo "fooadmin01 172.16.1.36" >> C:\Windows\system32\drivers\etc\hostsyields this line in the host file
f o o a d m i n 0 1 1 7 2 . 1 6 . 1 . 3 6I know there's another way to add a line to the end of a text file with PowerShell, but I thought the above result was . . .interesting.
 - 
@EddieJennings said in What Are You Doing Right Now:
Discovering curious things about PowerShell remoting.
[hypervlab01]: PS D:\Nano> echo "fooadmin01 172.16.1.36" >> C:\Windows\system32\drivers\etc\hostsyields this line in the host file
f o o a d m i n 0 1 1 7 2 . 1 6 . 1 . 3 6I know there's another way to add a line to the end of a text file with PowerShell, but I thought the above result was . . .interesting.
Bah. Realized I had the IP and hostname backwards, but even doing it properly, yields the odd spacing.
 - 
For those keeping score, this worked fine
add-content -path $pathToHostsFile -value "IP hostname". - 
@EddieJennings said in What Are You Doing Right Now:
@EddieJennings said in What Are You Doing Right Now:
Discovering curious things about PowerShell remoting.
[hypervlab01]: PS D:\Nano> echo "fooadmin01 172.16.1.36" >> C:\Windows\system32\drivers\etc\hostsyields this line in the host file
f o o a d m i n 0 1 1 7 2 . 1 6 . 1 . 3 6I know there's another way to add a line to the end of a text file with PowerShell, but I thought the above result was . . .interesting.
Bah. Realized I had the IP and hostname backwards, but even doing it properly, yields the odd spacing.
cmd /c echo "172.16.1.36 fooadmin01" >> c:\windows\system32\drivers\etc\hosts - 
IP goes first in hosts file, followed by at least one space, and then the host name or fqdn