VSR Scripting - How to get Image Job Network User
Hi, I have successfully used the example powershell scripts that come with VSR 18 to script creating backup jobs, that back up to a network drive. I am now trying to write a script to get each ImageJobs NetworkUser and then change the NetworkPassword. I have spent a day trying to find how to get an ImageJobs NetworkUser but have failed. Please will someone help me out. See below for the script I am trying to get to work. Many Thanks, Josonic # I have got the system volume as $oVolume, and therefore its ID ForEach($ImageJob in $v2iAuto.ImageJobs) { Write-Host $ImageJob.Displayname # shows displayname correctly Write-Host $ImageJob.Location # shows 'IImageLocation Location (string) {get} {set}' Write-Host $ImageJob.Location($oVolume.ID) # shows 'The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))' Write-Host $ImageJob.Location($oVolume.ID).Path # shows 'The parameter is incorrect. (Exception from HRESULT: 0x80070057 (E_INVALIDARG))' }Solved1.4KViews0likes1CommentAutomate / Script System Recovery Policy Creation
Hi Gurus, Would like to seek for your advice regarding our current situation - deploy VSR 2016 on 3 sites with about 80 - 200 machines each. No VSR central management. Backup will be dumped to shared drive. We've gone past the installation part, but I would like to ask for your advice / suggestions how to go about automating / scripting creation of backup policies. Only a handful will have peculiar backup selection/destination/retention, so it would be extremely helpful if we can automate creation of policies for similar machines.2.2KViews0likes7CommentsHow to use SSR 2013 R2 SP3 with PowerShell ?
Hello, I want to use symantec system recovery 2013 R2 SP3 with PowerShell. I use the following Management Console : SSR 2013 R2 SP3 MS. I saw the script on ...\SSR 2013 R2 SP3\Sym_System_Recovery_2013R2_11.1.3.55088_Multilingual_Product\Docs\Automation\PowershellScripts but how is it possible to run successfully ? I want use the scripts to running the backups failed. Thanks for your response. SamirSolved1.3KViews0likes2CommentsAfter PST Migration Completed End User Can't Open Outlook
Enterprise Vault 11.0.1 CHF1, On Windows 2008 R2, Exhange 2013 CU8, End user uses outlook 2013. After PST migration completed when end user trys to open his outlook he faces with error which PST Outlook data file can not be found. By manuelly I can remove PST file which is migrated and solve this issue. But this is "Server driven pst migration" method and more than thousand end users. Are there any settings, policy or parameters on Enterprise Vault side to solve this issue automatically.Solved683Views2likes2CommentsProvisioning API Failing
Hi, I have been using a vbscript for a number of years that uses the evpm to prevent archiving the "DoNotArchive" folder in a users mailbox. I think that this stopped working around the time we moved to Windows 2008 R2 and EV10SP4 but I can't be sure. When the script runs now I get the error: An error occurred replacing the script parameters I have now used the example in the EV utilities guide (About using the Provisioning API to run Policy Manager Scripts, p253) as per below: option explicit Dim ArrayOfParameters(0) ArrayOfParameters(0) = "true" Dim Enabler Set Enabler = CreateObject("EnterpriseVault.ExchangeArchivePoint") Enabler.Directory = "MACHINE1" Enabler.Site = "site1" '(Entry Id or Site Name) Enabler.ExchangeServer = "DITTO" '(Entry Id or Exchange Name) Enabler.SystemMailbox = "EnterpriseVault-DITTO" Enabler.MailboxDN = "/o=Eng2000/ou=First Administrative Group/cn=Recipients/cn=Bruiser" Enabler.SetScriptFile "C:\MyScripts\Script1.ini", ArrayOfParameters Enabler.ExecuteScript ' runs the EVPM script against the script1.ini file after making the substitutions in the strings. and I get the same error. I did amend the values relevant to my site but that was it. I raised a call with Symantec and they said I had missed the brackets on the line: Enabler.SetScriptFile "C:\Program Files (x86)\Enterprise Vault\Scripts\EVPM\EnableScript_DONOTARCHIVETest2.ini", ArrayOfParameters So I added them in: Enabler.SetScriptFile ("C:\Program Files (x86)\Enterprise Vault\Scripts\EVPM\EnableScript_DONOTARCHIVETest2.ini", ArrayOfParameters) But then got the error: Cannot use parentheses when calling a Sub Symantec support said that they get the same errors (with their own script out of the the utilities guide) but cannot help me any further as they don't support scripts. Does anyone else use vbscript for EVPM on Windows 2008 R2 EV10SP4 and if so have you had the same issues and overcome them. Symantec support couldn't offer an alternative for me other than I would have to manually use evpm for each of our mailboxes. We have thousands. Any help would be greatly appreciated. MattSolved752Views2likes3CommentsMAC clients will not open archive mail items from the Internet (WAN) using RPC over HTTP
Dear All, I installed Evault 11 on windows 2012 R2 failover cluster. We configure imap clients as well. Internally Outlook for WIndows , OWA and outlook anywhere works fine. Internally Mac outlook 2011 and Mac mail using imap client work fine. When we try to access archive email or search archive in outlook 2011 mac from INternet it open new window and failed. We notice in the url it tries alias/enterprisevault but when we change it alias.domain.com/enterprise it work. Please let me know how we can change this from netbios name to fqdn I logged the call with Symantec support and they shared the article http://www.symantec.com/business/support/index?page=content&id=TECH176390&profileURL=https%3A%2F%2Fsymaccount-profile.symantec.com%2FSSO%2Findex.jsp%3FssoID%3D140800075169766r55xNS1qUJx1uD1WB06PZK537aN7fWmI6gu Please let me know if we can change this ? Thanks Mazhar Khan1.2KViews0likes3Commentsthe same GUID on two computers
I have two computers with the same GUID in Altiris Agent. So I deleted them from SSR-MS, then reset Guid (AeXAgentUtil.exe /resetguid), and then restart agent. But when I checked them it had again the same new GUID. So I've found on Altiris KB some script: 'vbscript Change GUID then force client to update configuratin and send basic inventory Dim WshShell Set WshShell = WScript.CreateObject("WScript.Shell" ) Dim TypeLib, sNewGuid Set TypeLib = CreateObject("Scriptlet.TypeLib" ) sNewGUID = TypeLib.Guid Set TypeLib = Nothing sNewGuid = left(sNewGUID, len(sNewGUID)-2) ' wscript.echo " # Guid Generated " + sNewGuid WshShell.RegWrite "HKLM\Software\Altiris\Altiris Agent\MachineGuid" ,sNewGuid, "REG_SZ" WshShell.RegWrite "HKLM\SOFTWARE\Altiris\Client Service\NSMachineGuid" ,sNewGuid, "REG_SZ" WshShell.RegWrite "HKLM\SOFTWARE\Altiris\eXpress\MachineGuid" ,sNewGuid, "REG_SZ" WshShell.RegWrite "HKLM\SOFTWARE\Altiris\eXpress\NS Client\MachineGuid" ,sNewGuid, "REG_SZ" WshShell.RegWrite "HKLM\SOFTWARE\Computing Edge\Notification Server\MachineGuid" ,sNewGuid, "REG_SZ" Dim client Set client=WScript.CreateObject ("Altiris.AeXNSClient" ) ignoreBlockouts=1 sendIfUnchanged = 1 client.SendBasicInventory sendIfUnchanged, ignoreBlockouts client.UpdatePolicies ignoreBlockouts Probably it works well/better. Now in Resource Manager I see both computers. But when I click "Symantec System Recovery Details" in SSR-MS I have information that "The Symantec System Recovery configuration data is not available" What to do with this?2.1KViews1like13Comments