1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...
1 Star2 Stars3 Stars4 Stars5 Stars (2 votes, average: 5.50 out of 5)
Loading...
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...
1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 10.00 out of 5)
Loading...
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...

How to deploy trusteer rapport via Intune or GPO silently

Download from http://download.trusteer.com/Gcur4Wtnu/RapportSetup-Full_x64.exeIntune : RapportSetup-Full_x64.exe /s /p NOICONS=true NOBROWSER=true ACCEPTLICENSE=TRUEGPO Powershell Computer Startup Script : [pastacode lang=”bash” manual=”If(!(Test-Path%20-path%20%22C%3A%5CProgram%20Files%20(x86)%5CTrusteer%5CRapport%5CConsole.ico%22))%0A%0A%20%7B%0A%20cd%20%22%5C%5Clocal%5Cto%5Cinstaller%5CGroupPolicy%5CTrustee%22%0A.%5CRapportSetup-Full_x64.exe%20%2Fs%20%2Fp%20NOICONS%3Dtrue%20NOBROWSER%3Dtrue%20ACCEPTLICENSE%3DTRUE%0A%0A%7D%0A” message=”” highlight=”” provider=”manual”/]

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...

GPO to Add Shared Calendar to Users Outlook

VBA Script to Add a Shared Calendar to Users Outlook[pastacode lang=”markdown” manual=”‘You%20will%20need%20to%20disable%20Macro%20Security%20for%20this%20to%20run%0A’Use%20GPO%20to%20deploy%20VbaProject.OTM%20to%20%25appdata%25%5CMicrosoft%5COutlook%20folder%0A%0APrivate%20Sub%20Application_Startup()%0A%20%0ACall%20OpenMeetingRoom1%0A%20%0AEnd%20Sub%0A%0ASub%20OpenMeetingRoom1()%0A%0A%20%20%20%20Dim%20myNamespace%20As%20Outlook.NameSpace%0A%20%20%20%20Dim%20myRecipient%20As%20Outlook.Recipient%0A%20%20%20%20Dim%20CalendarFolder%20As%20Outlook.Folder%0A%20%20%20%20%0A%20%20%20%20Set%20myNamespace%20%3D%20Application.GetNamespace(%22MAPI%22)%0A%20%20%20%20Set%20myRecipient%20%3D%20myNamespace.CreateRecipient(%22Meeting%20Rooom%201%22)%0A%20%20%20%20myRecipient.Resolve%0A%20%20%20%20If%20myRecipient.Resolved%20Then%0A%20%20%20%20%20%20%20%20Call%20ShowCalendar(myNamespace%2C%20myRecipient)%0A%20%20%20%20End%20If%0A%20%0AEnd%20Sub%0A%0A%0A%0ASub%20ShowCalendar(myNamespace%2C%20myRecipient)%0A%20%20%20%20Dim%20CalendarFolder%20As%20Outlook.Folder%0A%0A%20%20%20%20Set%20CalendarFolder%20%3D%20_%0A%20%20%20%20%20%20%20%20myNamespace.GetSharedDefaultFolder%20_%0A%20%20%20%20%20%20%20%20(myRecipient%2C%20olFolderCalendar)%0A%20%20%20%20’Open%20up%20the%20Calendar%0A%20%20%20%20’CalendarFolder.Display%0AEnd%20Sub%0A” message=”” highlight=”” provider=”manual”/]