This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.concurrent.ExecutorService; | |
import java.util.concurrent.Executors; | |
import java.util.concurrent.Future; | |
import java.util.concurrent.TimeUnit; | |
Thread t = new Thread(new Runnable() { | |
public void run() { | |
// stuff here that was in main | |
logger.debug("threaded started "); | |
try { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
set WakeOnLan = server.createobject("DigitalWol.Wol") | |
WakeOnLan.TheMacAddress('009027a322fc') | |
WakeOnLan.TheIpNumber('217.204.255.61') | |
WakeOnLan.TheSubnetMask('255.255.255.255') | |
WakeOnLan.ThePortNumber('4343') | |
WakeOnLan.WakeMeUp | |
%> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form method="post" action="bottom.asp" target="bottom"> | |
<p align="justify" style="margin-left: 10">This is where you would enter the Mac Address.</p> | |
<input type="text" name="MacAddress" size="20" value="009027a322fc"> | |
<input type="text" name="IpNumber" size="20" value="195.188.159.20"> | |
<input type="text" name="SubnetMask" size="20" value="255.255.255.0"> | |
<input type="submit" value="Send Magic Packet" name="thebutton" class="button"> | |
</form> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% | |
if Request.Form("MacAddress") <> "" then | |
set WakeOnLan = server.createobject("DigitalWol.Wol") | |
WakeOnLan.TheMacAddress(Request.Form("MacAddress")) | |
WakeOnLan.TheIpNumber(Request.Form("IpNumber")) | |
WakeOnLan.TheSubnetMask(Request.Form("SubnetMask")) | |
WakeOnLan.ThePortNumber(Request.Form("PortNumber")) | |
WakeOnLan.WakeMeUp | |
end if | |
%> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dn: CN=defaultPrinter,CN=Schema,CN=Configuration,DC=depicus,DC=com | |
changetype: add | |
adminDescription: Default-Printer | |
adminDisplayName: defaultPrinter | |
attributeID: 1.2.840.113556.1.8000.548.9460 | |
attributeSecurityGUID:: hri1d0qU0RGuvQAA+ANnwQ== | |
attributeSyntax: 2.5.5.12 | |
cn: defaultPrinter | |
isMemberOfPartialAttributeSet: TRUE | |
isSingleValued: TRUE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub ModifyUsers(ByVal TheObject) | |
Dim TheUser | |
For Each TheUser In TheObject | |
Select Case TheUser.Class | |
Case "user" | |
TheUser.Put("DefaultPrinter", "LDNLGHNPXXX") | |
TheUser.Setinfo() | |
Case "organizationalUnit", "container" | |
ModifyUsers(TheUser) | |
End Select |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Dim Args, TheUser, TheNewValue | |
Set Args = Wscript.Arguments | |
Set TheUser = GetObject(Args(0)) | |
TheNewValue = InputBox("Old Default Printer: " & TheUser.defaultPrinter & vbCRLF & vbCRLF& vbCRLF& vbCRLF & "New Default Printer","Domain Default Printer",TheUser.defaultPrinter) | |
if TheNewValue <> "" then TheUser.Put "defaultPrinter",TheNewValue | |
TheUser.SetInfo | |
Set TheUser = Nothing | |
WScript.Quit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Dim TheRoot, TheDisplay, TheContext, TheMenu, TheLoop, TheNewMenu | |
set TheRoot = Getobject(LDAP://RootDSE) | |
set TheContext = GetObject("LDAP://" & "CN=409, CN=DisplaySpecifiers," & TheRoot.get("configurationNamingContext")) | |
Set TheDisplay = TheContext.GetObject("displaySpecifier","cn=user-Display") | |
TheLoop = 0 | |
If Not IsEmpty(TheDisplay.adminContextMenu) Then TheMenu = TheDisplay.GetEx("adminContextMenu") | |
For TheLoop = LBound(TheMenu) to UBound(TheMenu) | |
If InStr(TheMenu(TheLoop),"&Default Printer") Then | |
MsgBox "Menu already exists ... exiting ..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// if you are on Windows 10 you may need to start powershell as admin and run the folowing command | |
// Set-ExecutionPolicy RemoteSigned (see https://technet.microsoft.com/library/hh847748.aspx) | |
// then set back after you are done with | |
// Set-ExecutionPolicy Undefined | |
Get-AppxPackage *3dbuilder* | Remove-AppxPackage | |
Get-AppxPackage *windowscamera* | Remove-AppxPackage | |
Get-AppxPackage *officehub* | Remove-AppxPackage | |
Get-AppxPackage *skypeapp* | Remove-AppxPackage | |
Get-AppxPackage *zunemusic* | Remove-AppxPackage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update && sudo apt upgrade && sudo apt autoremove | |
git clone http://github.com/depicus/scripts | |
cd scripts | |
sudo sh webmin.sh |