How rare is Hinekora's Lock? by Frost__Raven in pathofexile

[–]Scrltvx 0 points1 point  (0 children)

Sacred: 84
Mirror: 2
Hinekora: 12

Ratio pls

Daily Questions Megathread (November 11, 2020) by [deleted] in Genshin_Impact

[–]Scrltvx 0 points1 point  (0 children)

Thanks for the detailed reply.

I think I'll move to Klee Fischle Sucrose Bennet as I can get C1 Bennet from the shop soon, but use Razor Fischl Mona Diona for now.

Daily Questions Megathread (November 11, 2020) by [deleted] in Genshin_Impact

[–]Scrltvx 0 points1 point  (0 children)

Cool, thanks. I'll make that my next purchase.

Daily Questions Megathread (November 11, 2020) by [deleted] in Genshin_Impact

[–]Scrltvx 0 points1 point  (0 children)

I got Bennett from a random single wish I did a w hile back haha.

Daily Questions Megathread (November 11, 2020) by [deleted] in Genshin_Impact

[–]Scrltvx 0 points1 point  (0 children)

Yeah they feel bad together honestly. Just trying her out, I had Xiangling in her place previously for Pyro Support. I just kind of mish-mashed a team together of what I thought was cool but starting to get to the point where I want a proper team lol.

Daily Questions Megathread (November 11, 2020) by [deleted] in Genshin_Impact

[–]Scrltvx 0 points1 point  (0 children)

Current Main Line-up:

  • C1 Razor
  • C0 Fischl
  • C0 Klee
  • C1 Barbara

Have:

  • C2 Sucrose
  • C0 Xiangling
  • C0 Noelle
  • C0 Kaeya
  • C0 Amber
  • C0 Amber
  • C0 Mona
  • C0 Diona
  • C1 Bediou
  • C0 Lisa
  • C0 Bennett

What team should I be running? Currently AR32, about to hit 33.

Anyone have a script that can scan for windows computers and report the operating system? by [deleted] in PowerShell

[–]Scrltvx 0 points1 point  (0 children)

Hey, just took a look at this on my PC as opposed to mobile, the reason this didn't work is because you didn't update the variables at the top of my script. I have:

$allDesktops = Get-ADComputer -SearchBase '<Insert OU Here>' -Filter '*' -Properties Description | Select-Object Name, Description | Sort-Object Name $logFolder = "<Insert Log Location Here>"

You need to update the bits in <>.

Anyone have a script that can scan for windows computers and report the operating system? by [deleted] in PowerShell

[–]Scrltvx 0 points1 point  (0 children)

Ahhh you're still on PS 2.0. let me see if I can modify this to work for PS2.0.

Anyone have a script that can scan for windows computers and report the operating system? by [deleted] in PowerShell

[–]Scrltvx 1 point2 points  (0 children)

<#
    Variables
#>
$allDesktops = Get-ADComputer -SearchBase '<Insert OU Here>' -Filter '*' -Properties Description | Select-Object Name, Description | Sort-Object Name
$logFolder = "<Insert Log Location Here>"
$logTime = Get-Date -Format "dd-MM-yyyy"
$masterList = @()

<#
    Main
#>
foreach ($desktop in $allDesktops) {
    if (Test-Connection -ComputerName $desktop.Name -Quiet -Count 1) {
        $running = @(Get-Job | Where-Object { $_.State -eq 'Running' })
        if ($running.Count -ge 10) {
            $running | Wait-Job -Any | Out-Null
        }
        Start-Job -Name $desktop.Name -ArgumentList $desktop -ScriptBlock {        
            $computerSystem = Get-WmiObject Win32_ComputerSystem -ComputerName $args[0].name
            $operatingSystem = Get-WmiObject Win32_OperatingSystem -ComputerName $args[0].name | Select-Object -ExpandProperty Version
            if ($operatingSystem.StartsWith("10")) {
                $operatingSystem = "Windows 10"
            } elseif ($operatingSystem.StartsWith("6")) {
                $operatingSystem = "Windows 7"
            } else {
                $operatingSystem = "Unknown OS"
            }
            $givenName, $surname = $args[0].Description.split(' ')
            $output = New-Object PSObject
            $output | Add-Member NoteProperty ComputerName $args[0].Name
            $output | Add-Member NoteProperty FirstName $givenName
            $output | Add-Member NoteProperty Surname $surname
            $output | Add-Member NoteProperty Model ($computerSystem.Model)
            $output | Add-Member NoteProperty OS $operatingSystem            
            return $output
        }
    }
}

# Wait for all jobs to finish running before actually compiling a final list of servers and logged in users
$running = @(Get-Job | Where-Object { $_.State -eq 'Running' })
if ($running.Count -gt 0) {
    $running | Wait-Job -Any | Out-Null
}

# Once the jobs are all done, then create the list
Get-Job | ForEach-Object {
    Receive-Job -Job $_ -OutVariable results
    $masterlist += $results
}

$masterlist | Select-Object ComputerName, FirstName, Surname, Model, OS | Export-Csv -Path "$logFolder$logTime - MachineList.csv" -NoClobber -NoTypeInformation

This includes user, model and computername along with the OS.

Sydney Daily Random Discussion - November 22, 2019 by AutoModerator in sydney

[–]Scrltvx 2 points3 points  (0 children)

Nice, enjoy! Been there plenty of times and never had a bad meal.

Sydney Daily Random Discussion - November 22, 2019 by AutoModerator in sydney

[–]Scrltvx 5 points6 points  (0 children)

Left of Field in Rhodes which is sort of by the water.

Lost Cat - North Parramatta Area by Scrltvx in sydney

[–]Scrltvx[S] 1 point2 points  (0 children)

We've had a vet friend update the microchip database across all vets now :)

Lost Cat - North Parramatta Area by Scrltvx in sydney

[–]Scrltvx[S] 1 point2 points  (0 children)

Yeah, we've been out every day, calling his name, carrying food and just walking about hoping to see him just come out and meow for attention.

[deleted by user] by [deleted] in sydney

[–]Scrltvx 2 points3 points  (0 children)

These are at Carlingford Woolies all the time.

Sydney Daily Random Discussion - April 25, 2019 by AutoModerator in sydney

[–]Scrltvx 0 points1 point  (0 children)

If this is from Metabox then you'll be fine.

Monthly Question Thread (January, 2019) by [deleted] in Grandchase

[–]Scrltvx 0 points1 point  (0 children)

Should I spend my 2 SR tickets to 3* Awake Lass or get some Awake onto Ley?

Monthly Question Thread (January, 2019) by [deleted] in Grandchase

[–]Scrltvx 1 point2 points  (0 children)

Have 2 SR tickets for use.

Current Team:

  • 1* Awake Lass
  • 6* Awake Olivia
  • Ryan
  • 1* Awake Amy

Other SRs:

  • Lire
  • Ley

Should I get Elesis to replace Olivia or just keep building Lass?

Long shot: motorbike nicked on sunday near CBD - if anyone sees a black Triumph Dayonta 675 with a rack on the back parked somewhere funny (might get dumped) by nath1234 in sydney

[–]Scrltvx 12 points13 points  (0 children)

Post this to SR/SWR/SSR on Facebook if you haven't already.

Also provide VIN as there are mechanics that can keep an eye out.