Workarround to convert overlay objects into custom

1) Export Base + Overlay in .def format. 2) Delete Base objects in .def file. 3) Delete Base info from .def file. 4) Find and Replace all “90015\2\2\” with “90015\2\4\” from the .def file. 5) Delete all __o sufixes from […]

Automatically passed parameters into a Windows batch file

The following table outlines how you can modify the passed parameter.   Parameter Description %1 The normal parameter. %~f1 Expands %1 to a fully qualified pathname. If you passed only a filename from the current directory, this parameter would also […]

Summary of regular-expression constructs for Java

Construct Matches   Characters x The character x \\ The backslash character \0n The character with octal value 0n (0 <= n <= 7) \0nn The character with octal value 0nn (0 <= n <= 7) \0mnn The character with octal value 0mnn (0 <= m <= 3, 0 <= n <= 7) \xhh The character […]

Application autostart on Synology NAS boot

To get an application to automatically start when you boot your Synology NAS:   SSH into your synology & login as admin or root $ cd /volume1/application   Create “application.conf” file using the following code # only start this service […]

How to call Reconciliation Job programatically

You have two ways to run or to call from workflow a specific reconciliation job 1) programatically can design a Filter object having a Run Process command calling internal application command process: Application-Command Reconciliation Trigger-Job -o “BMC Asset Management – […]

How to execute bash script from an URL

source <(curl -s http://mywebsite.com/myscript.txt) ought to do it. Alternately, leave off the initial redirection on yours, which is redirecting standard input; bash takes a filename to execute just fine without redirection, and <(command) syntax provides a path. bash <(curl -s […]

Direct Access URL to INC, CRQ & TSK using SHR:LandingConsole

The Rule http://MIDTIER_SERVER_NAME:PORT_NUMBER/arsys/forms/AR_SERVER_NAME/SHR%3ALandingConsole/Default+Administrator+View/?mode=search&F304255500= FORM_NAME&F1000000076=OPTION&F303647600=QUAL&F304255610=’FIELD_ID‘%3D%22INSTANCE_ID%22   Incidents without App List http://remedy/arsys/forms/remedy/SHR%3ALandingConsole/Default+Administrator+View/?mode=search&F304255500=HPD%3AHelp+Desk&F1000000076=FormOpenNoAppList&F303647600=SearchTicketWithQual&F304255610=’1000000161‘%3D%22#IncidentNumber#%22   Incidents with App List http://remedy/arsys/forms/remedy/SHR%3ALandingConsole/Default+Administrator+View/?mode=search&F304255500=HPD%3AHelp+Desk&F1000000076=FormOpen&F303647600=SearchTicketWithQual&F304255610=’1000000161‘%3D%22#IncidentNumber#%22   Changes without App List http://remedy/arsys/forms/remedy/SHR%3ALandingConsole/Default+Administrator+View/?mode=search&F304255500=CHG%3AInfrastructure+Change&F1000000076=FormOpenNoAppList&F303647600=SearchTicketWithQual&F304255610=’1000000182‘%3D%22#InfrastructureChange ID#%22   Changes with App List http://remedy/arsys/forms/remedy/SHR%3ALandingConsole/Default+Administrator+View/?mode=search&F304255500=CHG%3AInfrastructure+Change&F1000000076=FormOpen&F303647600=SearchTicketWithQual&F304255610=’1000000182‘%3D%22#InfrastructureChange ID#%22   Task without App List http://remedy/arsys/forms/remedy/SHR%3ALandingConsole/Default+Administrator+View?mode=search&F304255500=TMS%3ATask&F1000000076=FormOpenNoAppList&F303647600=SearchTicketWithQual&F304255610=’1‘%3D%22#Task ID#%22   Task with […]