<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Unity and vmaddin.vbs in Other Collaboration Subjects</title>
    <link>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849546#M138003</link>
    <description>&lt;P&gt;Can anyone explain the purpose of this script?  It appears that it assist in the automated installation of the VMO.  I am looking for a way to prompt the user for their extension and then install VMO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is what I did to prompt for the user's ext but who knows what the script parameters are for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim PromptText &lt;/P&gt;&lt;P&gt;Dim InputReturn&lt;/P&gt;&lt;P&gt;Dim TitleText   : TitleText = "Enter User Extension"&lt;/P&gt;&lt;P&gt;prompttext = "Enter the View Mail for Outlook user's extension." &lt;/P&gt;&lt;P&gt;prompttext = prompttext &amp;amp; (chr(13) &amp;amp; chr(10)) &lt;/P&gt;&lt;P&gt;prompttext = prompttext &amp;amp; "Example: 747" &amp;amp; (chr(13) &amp;amp; chr(10)) &amp;amp; (chr(13) &amp;amp; chr(10))&lt;/P&gt;&lt;P&gt;prompttext = prompttext &amp;amp; "***SHUT DOWN OUTLOOK BEFORE CLICKING OK***" &amp;amp; (chr(13) &amp;amp; chr(10)) &lt;/P&gt;&lt;P&gt;InputReturn = InputBox(prompttext, TitleText)&lt;/P&gt;&lt;P&gt;If InputReturn &amp;lt;&amp;gt; "" Then&lt;/P&gt;&lt;P&gt;  Session.Property("EXTENSION") =  InputReturn  &lt;/P&gt;&lt;P&gt;Else&lt;/P&gt;&lt;P&gt; Session.Property("EXTENSION") =  ""&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your input.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Mar 2019 23:58:43 GMT</pubDate>
    <dc:creator>msmalley</dc:creator>
    <dc:date>2019-03-13T23:58:43Z</dc:date>
    <item>
      <title>Unity and vmaddin.vbs</title>
      <link>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849546#M138003</link>
      <description>&lt;P&gt;Can anyone explain the purpose of this script?  It appears that it assist in the automated installation of the VMO.  I am looking for a way to prompt the user for their extension and then install VMO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is what I did to prompt for the user's ext but who knows what the script parameters are for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dim PromptText &lt;/P&gt;&lt;P&gt;Dim InputReturn&lt;/P&gt;&lt;P&gt;Dim TitleText   : TitleText = "Enter User Extension"&lt;/P&gt;&lt;P&gt;prompttext = "Enter the View Mail for Outlook user's extension." &lt;/P&gt;&lt;P&gt;prompttext = prompttext &amp;amp; (chr(13) &amp;amp; chr(10)) &lt;/P&gt;&lt;P&gt;prompttext = prompttext &amp;amp; "Example: 747" &amp;amp; (chr(13) &amp;amp; chr(10)) &amp;amp; (chr(13) &amp;amp; chr(10))&lt;/P&gt;&lt;P&gt;prompttext = prompttext &amp;amp; "***SHUT DOWN OUTLOOK BEFORE CLICKING OK***" &amp;amp; (chr(13) &amp;amp; chr(10)) &lt;/P&gt;&lt;P&gt;InputReturn = InputBox(prompttext, TitleText)&lt;/P&gt;&lt;P&gt;If InputReturn &amp;lt;&amp;gt; "" Then&lt;/P&gt;&lt;P&gt;  Session.Property("EXTENSION") =  InputReturn  &lt;/P&gt;&lt;P&gt;Else&lt;/P&gt;&lt;P&gt; Session.Property("EXTENSION") =  ""&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your input.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2019 23:58:43 GMT</pubDate>
      <guid>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849546#M138003</guid>
      <dc:creator>msmalley</dc:creator>
      <dc:date>2019-03-13T23:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Unity and vmaddin.vbs</title>
      <link>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849547#M138004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script looks sound.&lt;/P&gt;&lt;P&gt;Basically it creates an Input Box asking the user to enter their extension. Once they click OK, it sends the output to the MSI Installer; If nothing is entered it sends a blank. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm no expert with VMO but I am guessing you will need the code will need to be entered into the VMOInit.vbs file in the Viewmail &amp;gt; ENU directory (paste your script below the "rem" statements in Fucntion VMOInitFn).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open a Command Prompt window. (On the Windows Start menu, click Programs &amp;gt; Accessories &amp;gt; Command Prompt.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change to the ViewMail &amp;gt; ENU directory (or to the language applicable to your installation). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter vmaddbin ViewMail.msi VMOInit.vbs, and press Enter. (When the script completes, your cursor returns to the command line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Run the file ViewMail.msi on a test machine to confirm that the installation completes successfully. (If the installation is unsuccessful, verify the changes made to VMOInit.vbs.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOre info about customizing the VMO Install is available here &lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/docs/voice_ip_comm/unity/vmo/release/notes/502vmorn.html#wp39432" target="_blank"&gt;http://www.cisco.com/en/US/docs/voice_ip_comm/unity/vmo/release/notes/502vmorn.html#wp39432&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, if so please rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 12:23:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849547#M138004</guid>
      <dc:creator>davetucker</dc:creator>
      <dc:date>2008-02-15T12:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Unity and vmaddin.vbs</title>
      <link>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849548#M138005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script looks sound.&lt;/P&gt;&lt;P&gt;Basically it creates an Input Box asking the user to enter their extension. Once they click OK, it sends the output to the MSI Installer; If nothing is entered it sends a blank. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm no expert with VMO but I am guessing you will need the code will need to be entered into the VMOInit.vbs file in the Viewmail &amp;gt; ENU directory (paste your script below the "rem" statements in Fucntion VMOInitFn).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open a Command Prompt window. (On the Windows Start menu, click Programs &amp;gt; Accessories &amp;gt; Command Prompt.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Change to the ViewMail &amp;gt; ENU directory (or to the language applicable to your installation). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter vmaddbin ViewMail.msi VMOInit.vbs, and press Enter. (When the script completes, your cursor returns to the command line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Run the file ViewMail.msi on a test machine to confirm that the installation completes successfully. (If the installation is unsuccessful, verify the changes made to VMOInit.vbs.) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOre info about customizing the VMO Install is available here &lt;A class="jive-link-custom" href="http://www.cisco.com/en/US/docs/voice_ip_comm/unity/vmo/release/notes/502vmorn.html#wp39432" target="_blank"&gt;http://www.cisco.com/en/US/docs/voice_ip_comm/unity/vmo/release/notes/502vmorn.html#wp39432&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, if so please rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 12:54:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849548#M138005</guid>
      <dc:creator>davetucker</dc:creator>
      <dc:date>2008-02-15T12:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Unity and vmaddin.vbs</title>
      <link>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849549#M138006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dave,&lt;/P&gt;&lt;P&gt;So am I correct by saying that all vmaddin.vbs script does is update the MSI package with values in VMOInit.vbs?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have a script that will look up the logged on user's telephone number out of AD then update the registry with telephone number and server name for vmo?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 14:38:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849549#M138006</guid>
      <dc:creator>msmalley</dc:creator>
      <dc:date>2008-02-15T14:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Unity and vmaddin.vbs</title>
      <link>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849550#M138007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is what I ended up developing.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please rate helpful posts.&lt;/P&gt;&lt;P&gt;---------------------------------------------&lt;/P&gt;&lt;P&gt;' VBScript source code&lt;/P&gt;&lt;P&gt;Const VMOFile = "C:\Program Files\Viewmail\AvMMOCtrl.ocx"&lt;/P&gt;&lt;P&gt;Const KV = "HKCU\Software\Cisco Systems\Cisco Unity\Media Master\Profiles\default\Telephone Record and Playback extension"&lt;/P&gt;&lt;P&gt;Dim   WshShell, objFileSystem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set ADSysInfo = CreateObject("ADSystemInfo")&lt;/P&gt;&lt;P&gt;Set CurrentUser = GetObject("LDAP://" &amp;amp; ADSysInfo.UserName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;' ====================================================================&lt;/P&gt;&lt;P&gt;' Retrieves the Phone number to be added to the VMO registry setting&lt;/P&gt;&lt;P&gt;' This can be changed to "strIpPhone = CurrentUser.telephoneNumber" to &lt;/P&gt;&lt;P&gt;' get it from the typical telephone number field from Active Directory.&lt;/P&gt;&lt;P&gt;' ====================================================================&lt;/P&gt;&lt;P&gt;' Other phone number fields are:&lt;/P&gt;&lt;P&gt;' mobile    -- Mobile Phone Number&lt;/P&gt;&lt;P&gt;' homephone -- Home Phone Number&lt;/P&gt;&lt;P&gt;' ipPhone   -- IP Phone Number&lt;/P&gt;&lt;P&gt;' ====================================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;strIpPhone = CurrentUser.ipPhone&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set objFileSystem = WScript.CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If  objFileSystem.FileExists(VMOFile)  and  strIpPhone &amp;lt;&amp;gt; "" Then &lt;/P&gt;&lt;P&gt;	Set WshShell = WScript.CreateObject("WScript.Shell")&lt;/P&gt;&lt;P&gt;	WshShell.RegWrite KV, strIpPhone, "REG_SZ"&lt;/P&gt;&lt;P&gt;	Set WshShell = nothing&lt;/P&gt;&lt;P&gt;End If&lt;/P&gt;&lt;P&gt;set objFileSystem = Nothing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Mar 2008 14:39:31 GMT</pubDate>
      <guid>https://community.cisco.com/t5/other-collaboration-subjects/unity-and-vmaddin-vbs/m-p/849550#M138007</guid>
      <dc:creator>msmalley</dc:creator>
      <dc:date>2008-03-25T14:39:31Z</dc:date>
    </item>
  </channel>
</rss>

