Skip to content

Instantly share code, notes, and snippets.

@2legit2git
2legit2git / designer.html
Last active August 29, 2015 14:09
designer
<link rel="import" href="../core-scaffold/core-scaffold.html">
<link rel="import" href="../core-header-panel/core-header-panel.html">
<link rel="import" href="../core-menu/core-menu.html">
<link rel="import" href="../core-item/core-item.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<link rel="import" href="../core-field/core-field.html">
<link rel="import" href="../core-icon/core-icon.html">
<link rel="import" href="../core-input/core-input.html">
<link rel="import" href="../core-icons/core-icons.html">
@2legit2git
2legit2git / take-control-fix.ps1
Last active February 5, 2025 10:57
Fix for N-Central Take Control issue on February 3, 2025. Adds "LogLevel=8" to BASupSrvc.ini and restarts Take Control services. I found all of our installations had the file located in the first $FileName variable. Uncomment the line that corresponds to the correct location for the .ini.
$FileName = "C:\ProgramData\GetSupportService\BASupSrvc.ini"
#$FileName = "C:\ProgramData\GetSupportService_N-central\BASupSrvc.ini"
#$FileName = "C:\ProgramData\GetSupportService_LOGICnow\BASupSrvc.ini"
$Pattern = "[Main]"
$FileOriginal = Get-Content $FileName
[String[]] $FileModified = @()
Foreach ($Line in $FileOriginal)
{