Related Articles
Simple Alert Box on Windows Using VBScript
Copy below code in a notepad and save it as alert.vbs (as all files) X=Msgbox(“Your system is Hacked! Please Contact IT Support Immediately.”,0+3,”Alert!”) Now run alert.vbs to show alert box on your windows machine. Change 0+3 to 0+16 to show different alert box.
On page SEO Checklist
Below is the list of On page SEO Checklist On page SEO Checklist Keyword placement: Keyword in Title Keyword in Permalink Keyword in first paragraph Keyword in Image Alt tag Tweaked Keyword in H2 or H3 Bold Important Keywords and related keywords Italics 1-2 important Keywords Outbound Link to relevant high-quality sites Internal links to […]
Bonitasoft Groovy Scripts to Get Users Data
Using below Groovy Script code you will get the complete information of a particular user in Bonitasoftt To get Manager Email address in Bonitasoft: ${import org.ow2.bonita.facade.IdentityAPI;import org.ow2.bonita.facade.identity.User;IdentityAPI api = apiAccessor.getIdentityAPI();User user = api.findUserByUserName(processInstance.getStartedBy());User manager1 = api.getUserByUUID(user.getManagerUUID());return manager1.email;} To get Professional Email of a user : ${import org.ow2.bonita.facade.IdentityAPI;import org.ow2.bonita.facade.identity.User;IdentityAPI api = apiAccessor.getIdentityAPI();User user = api.findUserByUserName(processInstance.getStartedBy());User manager1 […]