How do i install ViewMail 7 as a batch process?

Environment:
ViewMail 7.0(2)
Microsoft Outlook 2007
MS Exchange 2007
Unity 7.0(2)
CUCM 7.1.3.30000-1
Hello,
I was just wondering if there is a way to deploy viewmail to client PCs en masse. I have about 150 users that I need to install view mail on, and I would rather find a way of doing this as a batch process, as opposed to walking to every workstation and performing the task manually.
I have created a script that will allow me to install viewmail, but I have to specify the extension for each and every person, which of course, defeats the purpose of a script in the first place.
Thanks very much.
Sincerely,
Deepak Dalal

Hi -
Here's what I recommend - use your script as you indicated to populate the majority of common registry settings for ViewMail for all users - i.e. Unity server name, Record and Playback settings, etc.  For the extension, include this information in a user welcome note that gets sent to the users the morning of the phone cutover.  You can include a screenshot with instructions for the ViewMail General Options tab.  Users have to enroll in voicemail anyway and we have found they adapt easily to entering their extension number as part of the enrollment process.  From experience, we have observed that users have problems entering the Unity server name, either misspell it or enter the wrong IP address, which is why I recommend you include this information in the script.  Also, scripts can be deployed to a number of workstations using Active Directory Group Policy or via software distribution application like Microsoft SMS or Altiris.
Sincerely, Ginger

Similar Messages

  • How to use a custom script in a batch process?

    I was recently told that I can Photomerge, crop and save 2 separate folders of images to a 3rd folder in a batch process if I created a custom Javascript.  Are there any examples of how to integrate a custom script as an action in a batch process?

    if you recieve an image from mms you can save the object to gallery and then select it as wallpaper
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • How to create multiple pdf files from multiple batch processing

    I have several file folders of jpeg images that I need to convert to separate multi-page pdf files. To give a visual explanation:
    Folder 1 (contains 100 jpeg image files) converted to File 1 pdf (100 pages; 1 file)
    Folder 2 (contains 100 jpeg image files) converted to File 2 pdf (100 pages; 1 file)
    and so on.
    I know I can convert each folder's content as a batch process, but I can only figure out how to do so one folder at a time. Is it at all possible to convert multiple folders (containing jpegs) to multiple pdf files? Put differently, does anyone know how to process a batch of folders into multiple (corresponding) pdf files?
    Many thanks.

    There are two approaches to do this:
    - First convert all JPG files to PDF files using a "blank" batch process. Then combine all PDF files in the same folder using another batch process and a folder-level script (to do the actual combining). I have developed this tool in the past and it's available here:
    http://try67.blogspot.com/2010/10/acrobat-batch-combine-all-files-in.html
    - The othe option is to do everything in a single process, but that requires an application outside of Acrobat, which I'm currently developing.
    If you're interested in any of these tools, feel free to contact me personally.

  • How to set the number of sockets for batch processing at runtime?

    Hello all,
    I need to change the execution model at runtime. I have achieved this by setting the 'ModelPath' property of the sequence file at runtime. When I set the sequence file model as batchmodel, i need to set the number of test sockets also dynamically. How can this be done? Once i set the number of sockets, i would also have to set the UUT serial number for each socket. Please help me out in solving this.
    Thanks and Regards
    Madhu Srinivasan.

    Hi Madhu,
        You can do this by inserting a sequence file callback into your main sequence and choose the ModelOptions callback. You can then use the expression step to set the "Parameters.ModelOptions.NumTestSockets" value to whatever you want. If you then use the Test UUTs execution entry point you will be prompted for serial numbers automatically. You could also use this same procedure but alter the ModelOptions callback in the process model directly, either way works just as well but I think that using a sequence file callback gives a bit more flexibility in the system.
    Hope this helps,
       Nick

  • How to authenticate (JAAS) a user programmatically for batch processing

    HI,
    We're struggling to get our batch user proper authenticated and authorized to enable the batch user to execute various jobs. The Jobs are initially executed by a Quartz scheduler which in turn invokes to execute method on the specific batch job controller class. In this class we'll like to login the batch user before the processing starts and again logout the user before the jobs ends. The batch job processing does some updates on security protected entities - that's where the problems starts. To be able to update certain ADF Entities, the batch user must be in "batch-role". The permissions is configured in the jazn-data.xml file. ADF Security is enabled for the project and various entities is security protected. The application is deployed in one EAR file in into Weblogic 10.3.5. We're using JDeveloper 11.1.2.1.
    When we login to the application through the login form in the application, then the security permissions is applied as they should and only users with the correct roles is able to update certain security protected entities. The login form uses something like this, to authenticate the user:
    Subject subject = weblogic.security.services.Authentication.login(handler);
    weblogic.servlet.security.ServletAuthentication.runAs(mySubject, request);
    We'd like to do the same kind of authentication in the batch controller class, like:
    Subject subject = weblogic.security.services.Authentication.login(new BatchLoginCallBackHandler());
    weblogic.security.Security.runAs(subject,
    new PrivilegedAction() {
    public Object run() {
    try {
    executeJob(jec);
    } catch (JobExecutionException e) {
    e.printStackTrace();
    return null;
    But this doesn't work. When the job accesses ADFContext.getSecurityContext() it isn't the correct user which is logged in (actually it is the users which initially started the scheduler). And even thouth
    boolean inBatchRole = aDFContext.getSecurityContext().isUserInRole("batch-role");
    returns true, the user is not allowed to update entities which requires this role to allow an update. It some how seems to, that the login does affect the ADF application module (ADF Context).
    We've tried a lot of other things but we're not able to login the batch user in the same way as the ADF Faces are.
    Can anyone please help us?
    Regards
    Jacob

    We have the same requirement.
    We've tried these approaches, with no success:
    AuthenticationService vAuthenticationService = AuthenticationServiceUtil.getAuthenticationService();
    vAuthenticationService.login("user", "password");
    resulting in Caused By: oracle.adf.share.security.ADFSecurityRuntimeException: EXC_UNSUPPORTED_AUTHENTICATION_OPERATION
    and JAASAuthenticationService authService = new JAASAuthenticationService();
    authService.login("user", "password");
    Caused By: java.security.AccessControlException: access denied (oracle.security.jps.JpsPermission AppSecurityContext.setApplicationID.default)
    If I test these methods in a simple java class's main method, they work.
    I feel I'm missing something, could somebody please tell me if I'm thinking wrong: We have an application made of a Model project, a UI project(ADF) and a scheduler project(Quartz). Both the UI project and the scheduler use the Model project(ADF BC). We deploy 2 ears, one for the UI and one for the scheduler. The UI application's security is working just fine, and it's about time we enforce security for the scheduler. Scheduler has a Listener that extends QuartzListener, witch implements ServletContextListener. In the contextInitialized we launch different jobs using quartz. How could we make these jobs authenticate using some predefined user credentials?

  • How do I install windows from USB on Macbook pro 3,1

    How do I install windows from USB on Macbook pro 3,1 ?
    My Superdrive is far from super anymore, So I managed to make an extern drive with both Snow Leopard Partition, Lion Partition (Since I thought Boot Camp 4,1 would bypass my problem), and Time Machine partition, Since I got 1. USB drive that works.
    - My general issue is that Boot camp Refuse to see the USB drive - (Many "how to"´s though show how they install windows perfectly through the USB port, but they use airbooks!, and somehow the Macbook will not ?)
    I fix that issue with >> rEFIt <<, that suddenly makes it possible for the Mac to see the USB drive, and partitions.
    Which was very strange since I could use an extern HD with the whole installation to start up wipe the whole disk, and then use my extern drive with partitions to install Snow Leopard and get everything as before with timemachine. Very smart with timemachine, but very lucky that I have a extern drive that runs the whole system and that I made the partitionsdrive before. DVD-drives are the past!
    Point: So the original system could see the Snow Leopard installation USB disk, but boot camp cannot find the USB drive ?????????
    After rEFIt I booted and then I got this error:
    Starting bootmgr.efi
    Error: Unsupported while loading bootmgr.efi
    I read it could be a problem with the Windows software, so I purchased an extern DVD drive, Used Disk Utility to make an image (.DMG), then used another program to convert the .dmg to .ISO.
    Then downloaded a trialversion of vmWare fusion, and installed windows from the iso. Everything worked brilliant, except and that is why I want to use boot camp, Running windows in another program while running the mac system is a little hacky and slow.
    Point: Nothing is wrong with the windows software, and windows runs fine.
    I then downloaded the Windows DVD / USB Tool, reformatted a USB drive as Master Boot Partition, MS-Dos Fat partition, then after lots of struggling got Vmware, windows to recognise the USB drive. And installed the windows software on the USB drive, as all the walkthroughs recommend.
    Then I tried for "fun"! to just install windows form the extern USB drive, and with rEFIt it will see the drive and start to do something, but then when it starts to boot, the screen just turns into black and nothing happens, and you can see the drive does NOTHING. (I think it is because I only have 1 USB drive and the Extern DVD drive does not get enough power, but again the mac refuse to see the USB drive unless it is a Snow Leopard installation USB-drive!
    Well trying to install Windows Ultimate 64 Bit, which worked great in vmware, because that program installed from the .ISO file that I had on the desktop, but trying with Boot Camp did not get anywhere, what kind of **** program is this boot camp anyway!?, but then I try the new USB disk with windows made from windows, thorugh rEFIt, it sees the disk and then starts and then I get this ERROR:
    rEFIt - Booting Legacy OS
    Starting legacy loader
    Using load option ´USB´
    Error: Not found returned from legacy loader
    Error: Not found from LocateDevicePath
    (x 9 times)
    Error: Load Error while (re)opening our installation volume
    The firmware refused to boot from the selected volume. Note that external hard drives are not well-supported by Apple´s firmware for legacy OS booting
    (Hey Apple please send out a updated firmware that fix this issue?!)
    So how do I do it ? - or is the only option to fix the partition running the system from the extern disk. Format the whole drive in 2 from the "bottom" and install windows and then afterwards install Mac on the other partition ?  Or just run windows on the mac and forget about mac software ? What a stupid solution...

    There are strings in the pliist file to add other Macs so that you can use some USB-DVD drives.
    This is 5 page thread, so a little more 'meat' to it:
    https://discussions.apple.com/thread/3410900?start=60&tstart=0
    And on PC booting Windows from a USB DVD to do the install is usually a piece of cake, sometimes you just need to specify that USB in the BIOS boot order and sometimes select via F12 (or another Fkey) and that is it.
    What you have here seems to be everything and everyone is excluded unless there is a  mac-model device ID string that specifies yes.  An unnecessary hurdle.

  • How do I install Snow Leopard while keeping files, applications, and settings

    I need to update my system, I realized that I need Snow Leopard (quiet late) before Maverick. My question is, how can I install it keeping files and all the data. I found this on Internet, does it work?
    Install Snow Leopard while keeping files, applications, and settings
    If you follow these steps, the installer will replace your operating system if one is already present, but will preserve your account information and personal files.  You may have to reinstall some applications, however.
    Insert the install disc (or the first install disc if you have more than one) into your disc drive. Restart your computer while holding down the c key. This causes your computer to start up from the install disc rather than your hard drive. When you see the gray Apple insignia, release c . 
    The Mac OS X installer should open automatically. Follow the on-screen prompts to read and accept the license agreement and begin the installation. When prompted to choose a destination disk, select your preferred location and click Install. 
    When the Mac OS X installation finishes with the disc, restart your computer. After the installation completes, a configuration program may begin automatically if you are installing for the first time. You will need to supply basic setup information for your computer. 
    Update your system software to ensure that you have the most recent operating system components.  From the Apple menu, select Software Update... , and then follow the instructions on the screen. Often, you will have to restart your computer, and you may have to run Software Update multiple times before it can completely update your system.

    That's why you need to back it up. You won't need to restore the backup immediately afterwards unless something goes wrong during the upgrade, but you'll need it later; the drive will eventually fail.
    (105428)

  • How do I install CC Desktop and Apps to a drive other than "C"?

    After several problems, help from the forum, and finally an Adobe tech from India, the tech was able to install CC Desktop.  The tech had to make hidden files visible, and change an existing file OO?? (I can't remember the last two letters") to OO??_old.  Maybe this will help someone else.
    Perhaps I'm wrong, but as the tech was downloading and installing CC Desktop, I didn't see any option for which drive to install it on.  I am now installing CC apps.  I see no option as to which drive to install the app.
    I have my computer setup as C: operating system; D: sctratch; E: programs; F: files, G: cd/dvd.
    How can I install CC Desktop to "E"?  If done, will CC apps automatically install on "E"?  Will CC Desktop work properly on other than "C" drive?   Will CC apps work properly on other than "C" drive?  If CC Desktop should always be on "C", can I stll install CC apps on "E"?  I get no dialog box or window providing an option of where to install any of the CC programs.

    While CCApp Prefs does give you this option, it doesn't respect the settings and still installs to C: Drive. This is a big problem for those using an SSD drive to boot. Why would something as simple as choosing your install folder, like every other application in the world be an issue that has taken over a year to fix?

  • How do I install a language XPI globally and make it the default language?

    I am using Firefox on unices and various Linux distributions (the less common ones). Installing Firefox is easy, but it is always in English. I get most of my interfaces (gnome, libreoffice, gimp, etc) in my preferred translation simply by setting the proper locale (export LANG=xy_XY.UTF-8) before starting Xorg. I found and downloaded my preferred language pack for firefox, which comes in an XPI archive. Opening that XPI file in Firefox (via an URL of file:///path/to/file/langpack.xpi) works smoothly, the translation gets installed under the user's own profile and it shows up in the add-ons (under the new category: Languages). Unfortunately, I still see no way in Firefox preferences to set this added translation as the default. Firefox still starts with the English interface. On SeaMonkey, there is a combobox on the Appearance panel that allows me to select the language of the interface from the list of installed/available languages. I cannot find such option on the panels of Firefox. So far, I had to install a language-changer add-on to be able to set the interface to my native locale. Even though my users never need to switch to any other locales.
    Q1., Once a language xpi is installed, how do I set the interface to use that language?
    Q2., How do I install the language xpi and make it the system-wide default, so that all my users see Firefox starting with the native (non-English) interface?
    I found a handful of description for Q2, but they appear to be outdated and do not work. These include the -install-global-extension argument to Firefox, placing the xpi file as it was downloaded into the "extensions" folder, placing the xpi file renamed to the extension ID into the "extensions" folder, unzipping the contents of the xpi into a subfolder of the "extensions" folder named as the extension ID. Please note, these attempts might have failed because I placed the extension NOT where it was supposed to go. The instructions refer to the global extension folder as <installation folder>/extensions, but on my system no such folder exists. Firefox seems to get installed into /usr/local/lib/firefox and there is no "extensions" subfolder there in. However, there is a "browser/extensions" subfolder, but placing my XPI there did not trigger any effect. Also, I manually created the "extensions" subfolder in /usr/local/lib/firefox and moved the xpi there (on various names, unzipped and in a whole) without the expected result.
    Any suggestion is very much appreciated!
    My goal is to install the firefox package, then run something from the command line resulting the non-English translation in the downloaded XPI becoming the system-wide default for all users. A step forward would be to know for certain where that "extensions" folder must be on my specific OS. How do I query that?

    Excellent. These guides got me as far as installing my preferred language pack, which gets added to the add-ons automatically (assuming the user says yes to the appearing question when Firefox is started).
    However, the GUI does not change unless the user enters "about:config" and changes the locale.
    Is there a way to do this from the command line? I mean, changing the locale settings.
    And preferrably for all users. So even when new users get added and they start Firefox the first time, they see it appearing with the preferred locale and not in English.

  • How can I install Windows 8.1 Enterprise on my Macbook Pro  With BootCamp?

    How Can I Install Windows 8.1 Enterprise on my MacBook Pro?

    Hi Armin.S,
    I apologize, I'm a bit unclear on the exact nature of your question. If you are asking about the system requirements for running various versions of Windows under Bootcamp, or just more generally how to set up Bootcamp on your Mac, you may find the following articles/pages helpful:
    Boot Camp: System requirements for Microsoft Windows operating systems
    http://support.apple.com/kb/HT5634
    Mac Basics: Using Windows on your Mac with Boot Camp
    http://support.apple.com/kb/HT1461
    Apple - Boot Camp Support
    https://www.apple.com/support/bootcamp/
    Regards,
    - Brenden

  • How can I install Adobe Photoshop Elements Update 9.0.3 after I get a message that Installation has failed and the solution is not in troubleshooting or forums?

    My Photoshop Elements 9 stopped working a couple of weeks ago. When I clicked the PSE button nothing happened. I tried this several times over a few days and it still failed. I uninstalled the program and re-installed it. It worked well. Then I tried to install the Update 9.0.3. The download was almost successful. When it was about to show 100% successful for the download, an error message said the installation had failed and that I should try later. I tried this many times over a few days and the same result occurred. I tried troubleshooting and the answers to questions, but I could not find an answer. I don't know where to go to see if anybody has answered my question. How can I install Update 9.0.3?
    Colin Hansen

    Try downloading and installing the 9.0.3 updater from here:
    mac
    Adobe - Photoshop Elements : For Macintosh
    windows
    Adobe - Photoshop Elements : For Windows

  • How do i install reader to a drive other than the boot drive?

    how do i install reader to a drive other than the boot drive?

    Hi nicksdaddy,
    There is an offline version:
    http://get.adobe.com/reader/enterprise/
    Hope that helps!
    Stacy

  • How do I install to a different drive than C drive? I could not find the option for where to install it.

    I use a solid state to boot faster but it is so small that windows needs most of it. How do I install to the drive that I keep my programs on? Where is the option to choose the install location?
    Thanks
    Chris

    Not a direct answer to your question, but...  As a "think outside the box" possibility, Crucial MX100 512GB drives are now only about 200 bucks.  Check Amazon or Newegg.
    Having your programs on the SSD too means they load much faster.
    -Noel

  • How can I install Adobe Reader 11 to a drive other than C:\?

    I downloaded Reader 11, but at no point during the installation process am I prompted for an installation location.  How can I install this to a drive other than the C:\?  I keep my C:\ and data storage drive separate so in the event the OS crashes I won't lose my data.  I have limited storage capacity since I'm on a laptop so I didn't make my C:\ very large, so that I would have more room for my D:\.  Any suggestions?
    Sincerely,
                    LT Gannon

    having data on a different drive is a good idea.  installing programs on a drive different from you os containing drive is generally not a good idea.  but if you have the expertise and are sure of what you're doing:
    mac:  ftp://ftp.adobe.com/pub/adobe/acrobat/mac/11.x/11.0.00/misc/
    win:  http://www.adobe.com/support/downloads/detail.jsp?ftpID=5515

  • I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    I got new hard driver for my MacBook I don't have the cd but I do have flash drive that has the software I need help because when I turn on my laptop it shows me a file with question mark how can I install the software from the flash driver?

    Hold down the Option key while you boot your Mac. Then, it should show you a selection of devices. Click your flash drive and it will boot from that.

Maybe you are looking for