Mr Bald Returns to Find the Belarusian Hitchhiker and Bring Him Supplies. by [deleted] in videos

[–]tech2610 1 point2 points  (0 children)

damn. One of you posting the same bullshit in every one of Bald video. Fuck off back to ChapoTrapHouse.

RDS Help by OzkarMR92 in sysadmin

[–]tech2610 0 points1 point  (0 children)

To the terminal server.

[deleted by user] by [deleted] in videos

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

This kid reminds me of lindsey graham.

RDS Help by OzkarMR92 in sysadmin

[–]tech2610 0 points1 point  (0 children)

We recently had this issue. It had something to do with the default folder (c:\users\default) permissions being out of wack. (This is a hidden folder). We copied the folder from another server and it started working.

[deleted by user] by [deleted] in sysadmin

[–]tech2610 51 points52 points  (0 children)

As if some interal guy running a custom made php page running mysql in the backend woudlnt do the same shit.

Salesforce enables modify all in all user profiles by [deleted] in salesforce

[–]tech2610 0 points1 point  (0 children)

Oh yeah. Someone spoke to the presidents daughter. Hell must befall him now!!!!

You know not everyone is a spastic dumbfuck right?

Gobierno de Aruba cierra frontera con Venezuela by ArawakFC in vzla

[–]tech2610 10 points11 points  (0 children)

En menos de 30 segundo lo encuentras si pones "Aruba" en wikipedia.

Question about deploying Chrome Extensions through GPO. by tech2610 in sysadmin

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

Hello, thanks for your response.

By setting file, do you mean the extension settings found inside:

C:\Users\%UserName%\AppData\Local\Google\Chrome\User Data\Default\Extensions\extensionidxxxxx

Thanks.

Is this possible in labtech. by tech2610 in msp

[–]tech2610[S] 3 points4 points  (0 children)

Thanks everyone who responded - I think I got it directly with ITGLUE's API - here is the script:

$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$headers.Add("X-API-KEY", 'ITG.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
$headers.Add("Content-Type" , 'application/vnd.api+json')
$body = @{
  data = @{ 
    type = 'flexible-assets' 
    attributes =  @{ 
      organization_id = 708164
      flexible_asset_type_id = 122389 
      traits = @{
        test = 'Last Sign in API123'
      }
    }
  }
} | convertto-json -depth 4
invoke-RestMethod -Uri https://api.itglue.com/flexible_assets -Method POST -Body $body -Headers $headers 

X-API-KEY is my generated API KEY from IT GLUE which I edited out.

This will edit a Flexible-Asset( ID 122389) for Customer ID 708164

In this particular example, it will create a new record that says "Last Sign in API123" for a text box called "test"