script to determine which user has assigned a certain printer

Navation: System Administrator > set up > printer > register. I am trying to remove an old printer, but get "this printer is referenced the printer profile option. You can't remove a printer while it is referenced. »

I'm looking for the table/report/whatever that will allow me to see which user is assigned to this printer.

Thanks colin

Colin,

Please refer to the following documents, it should be useful.

Note: 370372.1 - how to effectively remove a printer of Oracle Applications
Note: 102286.1 - how to delete a printer registered with Applications
Note: 105260.1 - get Error Message When you try to cancel the registration of a printer
Note: 201945.1 - How E-Business Suite profile Option values list for all levels using SQLPlus
Note: 367926.1 - how to find all the users with a specific profile Option set?

Kind regards
Hussein

Tags: Oracle Applications

Similar Questions

  • OIM:how I can determine which user has ' revoke if applies "set

    IOM how can I determine which users have "revoke if applies" defined on any of their policies? I can't see where it is set on the policy itself, but this setting appears to follow user not politics. I want to say, if I apply a policy to a user, even if this flag is set, then turn off the flag and remove the policy from the user, the resource is always cancelled even if politics is going not to do. I need to find in the database this setting (strategy/user) storage so I can't disable it on all users who still have on any of their policies.

    Thanks for any help at all (including links to docs so I can find this for me).

    There is a POL_KEY on the Oud_ table and the table of OUEDRAOGO. You can try to understand something here.

    -Kevin

  • Determine which user added an ESX host to vCenter

    I'm trying to figure out if there is anyway to determine which user has added a vCenter ESX host using the api.  I don't see this information as any sort of property of the host object.  Any help would be appreciated!

    Paul

    You can retrieve this and other events by using the event manager and the queryEvents() - http://pubs.vmware.com/vsphere-50/index.jsp?topic=%2Fcom.vmware.wssdk.apiref.doc_50%2Fvim.event.EventManager.html

    There is no property associated with a host ESX (i) on which the user added to vCenter and since it seems that you are interested in a specific host ESX (i), which can help narrow down the query.

    Attached, that is, remove / add a vSphere SDK for Perl script that will return the user who added the host to vCenter, you should get a response because it uses the Ref object managed the host ESX (i) and that changes each time you have.

    Here is an example of course:

    ./findUserAddHost.pl--serveur root vcenter50-4 - vihost - vesxi50 - 3.primp username - industries.com
    Enter the password:
    added root host vesxi50 - 3.primp - industries.com to datacenter datacenter2

  • How to determine which application has focus in Windows

    Hello all-

    I'm trying to work around the "Labview freezes when there is big data in the Clipboard, known issue" (http://forums.ni.com/t5/LabVIEW/Labview-freeze-when-accessing-a-custom-menu-with-data-on-the/m-p/200...) and a thought is to try to determine if Labview has the focus, and if it then clears the Clipboard.  If Labview has focus, and then let the user use the Clipboard.  It would be a good work around, because it would let users paste the screenshots and notes files and would not risk a nasty Clipboard / menu / gel-crash.

    My initial search for determining windows application focus, came so empty.  This old thread (from 2005) covers pretty well:

    http://forums.NI.com/T5/LabVIEW/is-there-a-simple-way-to-programatically-tell-which-VI-window/m-p/20...

    The "is more"property disobeys.»  I must determine if Labview has the focus, as opposed to Windows, Notepad, firefox, etc.  I also looked at command prompt commands and found nothing immediately useful here either.

    Any ideas?

    Thank you

    Casey

    Hello

    You can use the GetForegroundWindow starting from user32.dll. More information on msdn.

    Christian

  • Adobe DC: Is it possible to determine which user DC changed a PDF file?

    Hello

    My workplace has recently purchased Adobe DC to compile and store documents on paper in electronic form.  Part of our documentation requires peer review before being accepted into our storage system.

    I can't find the function of verification or follow-up in DC which shows all changes/deletions/additions/ect. a user can perform on a document that shows the edited information and by which applicable user profile.  We need this function for external auditors follow errors and know the user who commit them.

    Is this possible in Adobe DC?  I tried to use the "embed audit trail" in the tool control upstream, but when changes are made, it does not see the or I find the changes that are made and what the user.  Also she does not even allow the tool 'Edit PDF' to operate, so the point is moot by using this function.

    Thanks for any help you can provide.

    The Track of Audit Embed is associated with validations performed by Acrobat Preflight. I has no connection whatsoever with editing functions.

    Although PDF and Acrobat allow annotations to replay, there is no provision for the track changes.

    Understand that PDF is a file format of the final version and not a file format that has been designed or particularly good for any considerable change.

    -Dov

  • examples of data to determine which parent has a 1

    Hello everyone, I have the sample data below
    create table t1 
    (
      parent_id varchar2(200),
      child_id varchar2(200)
     
    );
     
    insert into t1
      (parent_id, child_id)
    values
      ('P1', 'C1');
     
     
    insert into t1
      (parent_id, child_id)
    values
      ('P2', 'C2');
      
      
    insert into t1
      (parent_id, child_id)
    values
      ('C1', 'D1');
     
     
     
    insert into t1
      (parent_id, child_id)
    values
      ('D1', 'D2');
      
      
      
      insert into t1
      (parent_id, child_id)
    values
      ('D1', 'D3');
    
    
      insert into t1
      (parent_id, child_id)
    values
      ('D2', 'D4');
    
    
      insert into t1
      (parent_id, child_id)
    values
      ('D4', 'E1');
    create table parent_place
    (
     parent_id varchar2(200),
     has_a_place char(1)
    
    );
    
    
    insert into parent_place
      (parent_id, has_a_place)
    values
      ('P1', '1');
    insert into parent_place
      (parent_id, has_a_place)
    values
      ('C1', '0');
    
    insert into parent_place
      (parent_id, has_a_place)
    values
      ('D1', '1');
    
    
    insert into parent_place
      (parent_id, has_a_place)
    values
      ('D2', '0');
      
      
      
      insert into parent_place
      (parent_id, has_a_place)
    values
      ('D3', '0');
      
      
      
      insert into parent_place
      (parent_id, has_a_place)
    values
      ('D4', '0');
    
    
      insert into parent_place
      (parent_id, has_a_place)
    values
      ('E1', '1');
    It's the exit, I want all
     Parent_id   Parent_has_a_place
             P1          No
             C1          Yes
             D1          No
             D2          Yes
             D3           Yes
             D4            No
             E1            No
    the idea is basically start with a particular parent_id and get all child_id associated to that parent and then by determining if a child_id has_a_place parent_id, if it's a 1, then YES, otherwise it's no.

    Any help is appreciated. Thank you
  • What is the best way to determine which line a user has clicked on a link?

    Hello. Question no doubt simple, but my googleing fails me. I have a table with a column that is a command link. How can I determine which row was clicked on? I need to take this value and to move to another page to link it to a different query. I thought to establish the result in a session bean? Or is there a better way?

    Thank you!

    Hello

    You have two options:

    1. (complex) have your ActionListener evaluate the event to get the source, then climb the tree of components up to the table and get the data of the current line;
    2 (single) add a setPropertyActionListener in relation to the value = "#{var}" target = "#{destination}" where var is the value of the attribute of the var and destination table is your bean managed requiring the line clicked.

    Kind regards

    ~ Simon

  • I changed my apple ID and password user name and it changed on 3 of my devices. I have a 4th device, which still has the old user name and password and I am not able to change it. I can't restore the phone to factory settings unless I can connect.

    I changed my apple ID user name and password on 3 of my devices. I have a 4th device, which still has the old user name and password and I am not able to change it. I can't restore the phone to factory settings unless I can connect.

    OK, just to clarify: you always use the same Apple ID, but you changed its name, correct?

    If this is the case, you can go to iCloud.com or use find my iPhone app (free on the App Store) of one of your devices to remove the 4th icloud.

  • How to determine that the user has purchased an article or not?

    Hello

    Can someone tell me how can I determine if the user has purchased an article or not?

    Until now, I add to the cart and then allow user to pay for this item through Paypal. But now, my goal is to show all these items that the user has already added, but not bought yet.so, whenever user logs in a/c, he can see the item in my cart.

    Please... help me

    This sounds like a question of PayPal, then you will want to check these forums. If you were using in-app purchases of BB, so yes, it has an API to check the previous in-app purchases.

  • which detects that the user has changed the clock of the device?

    Hi all my application dependent on the clock time in the device settings. who can my application to detect if the user has replaced the unit time? Thank you

    Salvation;

    It's the Question2:

    and I found the solution:

    bps_initialize();
    Subscribe (clock_get_domain ());
    clock_request_events (0);

    void ApplicationUI::event(bps_event_t *event) {}
    unsigned int dcode = bps_event_get_domain (event);
    If (dcode is {clock_get_domain()})
    unsigned int code = bps_event_get_code (event);
    if(code == CLOCK_INFO) {}
    Q_EMIT dateorclockuserChanged(); signal function qml
    }

    }
    }

    Thanks a lot for your help

  • By specifying which office is assigned to a user

    I currently have a pool of persistent 20 desktop computers Vista training. Wyse S10 allows us to connect to the connection manager to view with the Single Sign-On option. The connection manager will assign the next available bureau to the student that connects to. is it possible to configure the pool of offices so that Student01 is given Desktop01?

    Thank you

    Dave

    If you use a persistent pool, when a user is assigned a virtual computer in the pool, virtual machine becomes "stuck" to the user.  So, in this Yes feeling.  The initial creation of the pool is somewhat random, but once a user connects to a virtual computer it becomes their.

    Now the question in a non persistent pool of whatever the virtual computer is available is what you're going to get applies.  There is therefore no guarantee every user will receive the same VM.

  • Windows Installer error only by the installation of the machine is allowed. Please make sure that the user has the appropriate rights to do so.

    Trouble with trying to install an MSI Package. Receive the error message only by the installation of the machine is allow. It's when you try to run manually. When you try to run msiexec cmd

    msiexec /i "C:\Mimecast Services for Outlook 4.0.411.5287 (32 bit) GPO.msi" /qb/log "C:\install.log.

    = Recording started: 04/09/2013-10:36:27 Build type: SHIP UNICODE 5.00.7601.00 appeal process: C:\windows\system32\msiexec.exe =.
    MSI (c) (58:C0) [10:36:27:087]: established police.  Charset: Req = 0, Ret = 0, fonts: Req = MS Shell Dlg, Ret = MS Shell Dlg

    MSI (c) (58:C0) [10:36:27:087]: established police.  Charset: Req = 0, Ret = 0, fonts: Req = MS Shell Dlg, Ret = MS Shell Dlg

    MSI (c) (58:88) [10:36:27:107]: Resetting cached policy values
    MSI (c) (58:88) [10:36:27:107]: value of strategy Machine 'Debug' is 0
    MSI (c) (58:88) [10:36:27:107]: * RunEngine:
    Product: C:\Mimecast Services for Outlook 4.0.411.5287 (32-bit) GPO.msi
    Action:
    Command line:
    MSI (c) (58:88) [10:36:27:107]: Client and UI is none or basic: full installation running on the server.
    MSI (c) (58:88) [10:36:27:107]: grabbed execution mutex.
    MSI (c) (58:88) [10:36:27:147]: Cloaking enabled.
    MSI (c) (58:88) [10:36:27:147]: attempt of activation of all disabled privileges before calling install on server
    MSI (c) (58:88) [10:36:27:147]: meter is incremented to disable the stop. Counter after increment: 0
    MSI (s) (C 54:4) [10:36:27:157]: running the installation inside the multi-package transaction Services C:\Mimecast for Outlook 4.0.411.5287 (32-bit) GPO.msi
    MSI (s) (C 54:4) [10:36:27:157]: grabbed execution mutex.
    MSI (s) (54:F8) [10:36:27:157]: Resetting cached policy values
    MSI (s) (54:F8) [10:36:27:157]: value of strategy Machine 'Debug' is 0
    MSI (s) (54:F8) [10:36:27:157]: * RunEngine:
    Product: C:\Mimecast Services for Outlook 4.0.411.5287 (32-bit) GPO.msi
    Action:
    Command line:
    MSI (s) (54:F8) [10:36:27:477]: value of strategy Machine 'DisableUserInstalls' is 0
    MSI (s) (54:F8) [10:36:27:477]: value 'SearchOrder' user policy is 'nmu '.
    MSI (s) (54:F8) [10:36:27:477]: "DisableMedia" user policy value is 0
    MSI (s) (54:F8) [10:36:27:477]: value of strategy Machine 'AllowLockdownMedia' is 0
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: Media enabled only if the package is safe.
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: looking for sourcelist for product {C28136F7-F2C7-4426-B26F-F7E03922B34B}
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: added {C28136F7-F2C7-4426-B26F-F7E03922B34B}; for the potential sourcelist (pcode; disc; relpath) list.
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: check now product {C28136F7-F2C7-4426-B26F-F7E03922B34B}
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: Media is enabled for the product.
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: attempting to use LastUsedSource from source list.
    MSI (s) (54:F8) [10:36:27:477]: SOURCEMGMT: source C:\windows\ccmcache\4\ by train.
    MSI (s) (54:F8) [10:36:27:787]: entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (54:F8) [10:36:27:787]: source specified is already in a list.
    MSI (s) (54:F8) [10:36:27:787]: value 'SearchOrder' user policy is 'nmu '.
    MSI (s) (54:F8) [10:36:27:787]: value of strategy Machine 'DisableBrowse' is 0
    MSI (s) (54:F8) [10:36:27:787]: value of strategy Machine 'AllowLockdownBrowse' is 0
    MSI (s) (54:F8) [10:36:27:787]: adding new sources is allowed.
    MSI (s) (54:F8) [10:36:27:787]: the LastUsedSource value: C:\windows\ccmcache\4\.
    MSI (s) (54:F8) [10:36:27:787]: value LastUsedType: n.
    MSI (s) (54:F8) [10:36:27:787]: A LastUsedIndex: 1.
    MSI (s) (54:F8) [10:36:27:787]: SOURCEMGMT: resolved source: 'C:\windows\ccmcache\4\ '.
    MSI (s) (54:F8) [10:36:27:787]: value of strategy Machine 'LimitSystemRestoreCheckpointing' is 0
    MSI (s) (54:F8) [10:36:27:787]: Note: 1: 1715 2: Services for 32-bit Outlook Mimecast
    MSI (s) (54:F8) [10:36:27:787]: SRSetRestorePoint API call. dwRestorePtType: 0, dwEventType: 102, llSequenceNumber: 0, szDescription: «Installed it Services for Outlook 32-bit»
    MSI (s) (54:F8) [10:36:27:787]: the system restore service is disabled. Referred State: 1058. GetLastError() returned: 1058
    MSI (s) (54:F8) [10:36:28:117]: file will have the applied safety of OpCode.
    MSI (s) (54:F8) [10:36:28:147]: STRATEGY of RESTRICTION SOFTWARE: Verifying package--> ' C:\Mimecast Services for Outlook 4.0.411.5287 (32 bit) GPO.msi ' against the software restriction policy
    MSI (s) (54:F8) [10:36:28:147]: STRATEGY of RESTRICTION SOFTWARE: Services C:\Mimecast for Outlook 4.0.411.5287 (32-bit) GPO.msi has a digital signature
    MSI (s) (54:F8) [10:36:28:547]: STRATEGY of RESTRICTION SOFTWARE: C:\Mimecast Services for Outlook 4.0.411.5287 (32-bit) GPO.msi is allowed to run at the level of authorization 'unlimited '.
    MSI (s) (54:F8) [10:36:28:547]: dialogue of end not activated
    MSI (s) (54:F8) [10:36:28:547]: ==> C:\windows\ccmcache\4\Mimecast4.0.msi original packaging
    MSI (s) (54:F8) [10:36:28:547]: we're running out of ==> C:\windows\Installer\14b48052.msi package
    MSI (s) (54:F8) [10:36:28:547]: APPCOMPAT: looking for entry with ProductCode '{C28136F7-F2C7-4426-B26F-F7E03922B34B}' appcompat database
    MSI (s) (54:F8) [10:36:28:547]: APPCOMPAT: no matching ProductCode found in the database.
    MSI (s) (54:F8) [10:36:28:557]: MSCOREE not loaded loading copy from system32
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'DisablePatch' is 0
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'AllowLockdownPatch' is 0
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'DisableLUAPatching' is 0
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'DisableFlyWeightPatching' is 0
    MSI (s) (54:F8) [10:36:28:557]: APPCOMPAT: looking for entry with ProductCode '{C28136F7-F2C7-4426-B26F-F7E03922B34B}' appcompat database
    MSI (s) (54:F8) [10:36:28:557]: APPCOMPAT: no matching ProductCode found in the database.
    MSI (s) (54:F8) [10:36:28:557]: transformations are not secure.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding MsiLogFileLocation property. Its value is 'C:\install.log.
    MSI (s) (54:F8) [10:36:28:557]: command line: MSIINSTALLPERUSER = 3 CURRENTDIRECTORY = C: \ CLIENTUILEVEL = 2 CLIENTPROCESSID = 3672
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding PackageCode property. Its value is '{6C9809C5-9DBC-4683-AE5F-3E05D53939EA} '.
    MSI (s) (54:F8) [10:36:28:557]: Product Code spent in Engine.Initialize: "{C28136F7-F2C7-4426-B26F-F7E03922B34B}".
    MSI (s) (54:F8) [10:36:28:557]: the Product Code of the table of properties before transformations: "{C28136F7-F2C7-4426-B26F-F7E03922B34B}".
    MSI (s) (54:F8) [10:36:28:557]: the Product Code of the table of properties after transformations: "{C28136F7-F2C7-4426-B26F-F7E03922B34B}".
    MSI (s) (54:F8) [10:36:28:557]: unregistered product: first start installation
    MSI (s) (54:F8) [10:36:28:557]: has determined that the existing product (this product or the product being upgraded with a patch) is installed by user.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding MSIINSTALLPERUSER property. Its value is '3'.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: deleting ALLUSERS property. Its current value is '1 '.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: deleting MSIINSTALLPERUSER property. Its current value is '3'.
    MSI (s) (54:F8) [10:36:28:557]: product {C28136F7-F2C7-4426-B26F-F7E03922B34B} is assigned admin: LocalSystem has the key to publish.
    MSI (s) (54:F8) [10:36:28:557]: product {C28136F7-F2C7-4426-B26F-F7E03922B34B} is managed.
    MSI (s) (54:F8) [10:36:28:557]: MSI_LUA: invites of credentials not required, the user is an administrator
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding ProductState property. Its value is '1 '.
    MSI (s) (54:F8) [10:36:28:557]: entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (54:F8) [10:36:28:557]: source specified is already in a list.
    MSI (s) (54:F8) [10:36:28:557]: value 'SearchOrder' user policy is 'nmu '.
    MSI (s) (54:F8) [10:36:28:557]: adding new sources is allowed.
    MSI (s) (54:F8) [10:36:28:557]: the Package name from the configuration data: "Mimecast4.0.msi."
    MSI (s) (54:F8) [10:36:28:557]: Note: 2 1: 2262: AdminProperties 3:-2147287038
    MSI (s) (54:F8) [10:36:28:557]: Machine policy value 'DisableMsi' is 0
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'AlwaysInstallElevated' is 0
    MSI (s) (54:F8) [10:36:28:557]: "AlwaysInstallElevated" user policy value is 0
    MSI (s) (54:F8) [10:36:28:557]: product {C28136F7-F2C7-4426-B26F-F7E03922B34B} is assigned admin: LocalSystem has the key to publish.
    MSI (s) (54:F8) [10:36:28:557]: product {C28136F7-F2C7-4426-B26F-F7E03922B34B} is managed.
    MSI (s) (54:F8) [10:36:28:557]: the product '{C28136F7-F2C7-4426-B26F-F7E03922B34B}' is running with elevated privileges: product is affected.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding MSIINSTALLPERUSER property. Its value is '3'.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding CURRENTDIRECTORY property. Its value is "C:\". ».
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding CLIENTUILEVEL property. Its value is '2'.
    MSI (s) (54:F8) [10:36:28:557]: PROPERTY CHANGE: adding CLIENTPROCESSID property. Its value is '3672'.
    MSI (s) (54:F8) [10:36:28:557]: value of strategy Machine 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: adding MsiRestartManagerSessionKey property. Its value is 'b9237eca8dffb44583db9105bf61f283 '.
    MSI (s) (54:F8) [10:36:28:567]: MANAGER of REBOOT: logon.
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: adding MsiSystemRebootPending property. Its value is '1 '.
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: deleting MSIINSTALLPERUSER property. Its current value is '3'.
    MSI (s) (54:F8) [10:36:28:567]: TRANSFORMS property is now:
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: adding PRODUCTLANGUAGE property. Its value is "1033".
    MSI (s) (54:F8) [10:36:28:567]: PROPERTY CHANGE: adding VersionDatabase property. Its value is "200".
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application data
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Favorites
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Network shortcuts
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Documents
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Printer shortcuts
    MSI (s) (54:F8) [10:36:28:567]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Recent
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\SendTo
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Templates
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: C:\Users\tech.support\AppData\Local
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: C:\Users\tech.support\Pictures
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Menu\Programs\Administrative of Directors Data\Microsoft\Windows\Start
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (54:F8) [10:36:28:577]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application start\program Data\Microsoft\Windows\Start
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start Menu
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: \\gblon-v-fp001\users$\tech.support\Desktop
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative of Directors
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start start\program
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (54:F8) [10:36:28:587]: SHELL32::SHGetFolderPath returned: C:\windows\Fonts
    MSI (s) (54:F8) [10:36:28:587]: Note: 1: 2898 2: MS without Serif 3: MS without Serif 4: 0 05:16
    MSI (s) (54:F8) [10:36:28:597]: MSI_LUA: the MsiRunningElevated of the parameter property to 1 because the installation is already running high.
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding MsiRunningElevated property. Its value is '1 '.
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding privileged property. Its value is '1 '.
    MSI (s) (54:F8) [10:36:28:597]: Note: 1: 1402 2: HKEY_CURRENT_USER Software Microsoft MS Setup (ACME) \User Info 3:2
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding USERNAME property. Its value is "Oriel securities user".
    MSI (s) (54:F8) [10:36:28:597]: Note: 1: 1402 2: HKEY_CURRENT_USER Software Microsoft MS Setup (ACME) \User Info 3:2
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding COMPANYNAME property. Its value is "Oriel Securities Ltd.".
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding a DATABASE property. Its value is 'C:\windows\Installer\14b48052.msi '.
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding OriginalDatabase property. Its value is 'C:\windows\ccmcache\4\Mimecast4.0.msi '.
    MSI (s) (54:F8) [10:36:28:597]: value of strategy Machine 'MsiDisableEmbeddedUI' is 0
    MSI (s) (54:F8) [10:36:28:597]: Note: 1: 2205 2:3: Package_correctif
    MSI (s) (54:F8) [10:36:28:597]: policy value 'DisableRollback' Machine is 0
    MSI (s) (54:F8) [10:36:28:597]: strategy user 'DisableRollback' is 0
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding UILevel property. Its value is '3'.
    = Logging started: 04/09/2013-10:36:28 =.
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding ACTION property. Its value is 'INSTALL '.
    MSI (s) (54:F8) [10:36:28:597]: doing action: INSTALL
    Action start 10:36:28: INSTALL.
    MSI (s) (54:F8) [10:36:28:597]: ExecuteSequence running
    MSI (s) (54:F8) [10:36:28:597]: action driving: FindRelatedProducts
    Action start 10:36:28: FindRelatedProducts.
    MSI (s) (54:F8) [10:36:28:597]: action driving: AppSearch
    Action ended at 10:36:28: FindRelatedProducts. Returns the value 1.
    Action start 10:36:28: AppSearch.
    MSI (s) (54:F8) [10:36:28:597]: Note: 2 1: 2262: Signature 3:-2147287038
    MSI (s) (54:F8) [10:36:28:597]: PROPERTY CHANGE: adding NETFRAMEWORK40FULL property. Its value is '#1 '.
    MSI (s) (54:F8) [10:36:28:597]: Note: 2 1: 2262: Signature 3:-2147287038
    MSI (s) (54:F8) [10:36:28:597]: action driving: OutlookVersionCheck
    Action ended at 10:36:28: AppSearch. Returns the value 1.
    MSI (s) (54:C8) [10:36:28:627]: call for a custom action to distance. DLL: C:\windows\Installer\MSI837D.tmp, point of entry: OutlookVersionCheck
    MSI (s) (54:B8) [10:36:28:627]: generation random cookie.
    MSI (s) (54:B8) [10:36:28:637]: created server custom with PID 4656 (0 x 1230) Action.
    MSI (s) (54:80) [10:36:28:667]: running as a service.
    MSI (s) (54:80) [10:36:28:667]: Hello, I am your 32-bit custom action Server Impersonated.
    Action start 10:36:28: OutlookVersionCheck.
    SFXCA: Extraction of a custom action to the temporary directory: C:\windows\Installer\MSI837D.tmp-\
    SFXCA: Link to the CLR version v4.0.30319
    Call to the custom action CustomAction_OutlookCheck! CustomAction_OutlookCheck.CustomActions.OutlookVersionCheck
    BEGIN OutlookVersionCheck
    OUTLOOK BITNESS IS: x 86
    Key checking: Software\Microsoft\Office\11.0\Outlook
    Key checking: Software\Wow6432Node\Microsoft\Office\11.0\Outlook
    Key checking: Software\Microsoft\Office\12.0\Outlook\InstallRoot
    Key checking: Software\Wow6432Node\Microsoft\Office\12.0\Outlook\InstallRoot
    MSI (s) (54. 68) [10:36:28:827]: PROPERTY CHANGE: adding OUTLOOK_INSTALLED property. Its value is 'TRUE '.
    Key checking: Software\Microsoft\Office\14.0\Outlook\InstallRoot
    Found version: Outlook 2010
    Key checking: Software\Wow6432Node\Microsoft\Office\14.0\Outlook\InstallRoot
    MSI (s) (54. 68) [10:36:28:827]: PROPERTY CHANGE: property to change OUTLOOK_VERSION. Its current value is 'NONE '. Its new value: "Outlook 2010".
    Found version: Outlook 2010
    OUTLOOK_INSTALLED is: TRUE
    IS THE VERSION of OUTLOOK: Outlook 2010
    MSI (s) (54:F8) [10:36:28:830]: action driving: LaunchConditions
    Action ended at 10:36:28: OutlookVersionCheck. Returns the value 1.
    Action start 10:36:28: LaunchConditions.
    MSI (s) (54:F8) [10:38:26:502]: product: service Mimecast for 32-bit Outlook - only by the installation of the machine is allowed. Please make sure that the user has the appropriate rights to do so.

    MSI (c) (58:C0) [10:36:28:850]: established police.  Charset: Req = 0, Ret = 0, fonts: Req = MS Shell Dlg, Ret = MS Shell Dlg

    Installation is allowed only by the machine. Please make sure that the user has the appropriate rights to do so.
    Action ended at 10:38:26: LaunchConditions. Return value 3.
    Action ended at 10:38:26: INSTALL. Return value 3.
    Property (S): UpgradeCode = {586A589B-D6D5-48D3-9B6D-571EF230ED6A}
    Property (S): NETFRAMEWORK40FULL = 1 #.
    Property (S): LAUNCHOUTLOOKONEXIT = 1
    Property (S): WIXUI_INSTALLDIR = INSTALLDIR
    Property (S): OutlookOpen = false
    Property (S): ProgramFilesFolder = C:\Program Files (x 86).
    Property (S): VersionNT = 601
    Property (S): Manufacturer = Mimecast Ltd
    Property (S): ProductCode = {C28136F7-F2C7-4426-B26F-F7E03922B34B}
    Property (S): ProductLanguage = 1033
    Property (S): ProductName = Mimecast Services for 32-bit Outlook
    Property (S): ProductVersion = 4.0.348.5166
    Property (S): ARPPRODUCTICON = MainIcon.exe
    Property (S): ARPHELPLINK = * address email is removed from the privacy *
    Property (S): ARPNOMODIFY = 0
    Property (S): Platform = *.
    Property (S): ROOTDRIVE = C:\\
    Property (S): MsiBitness = x 86
    Property (S): MimecastInstaller = *.
    Property (S): CAP_Common = *.
    Property (S): CAP_Common.Options = *.
    Property (S): CAP_Common.Options.Credentials = *.
    Property (S): CAP_Common.Options.ChangePassword = *.
    Property (S): CAP_Common.Options.Network = *.
    Property (S): CAP_Common.Options.Network.Read = *.
    Property (S): CAP_Common.Options.Network.Update = *.
    Property (S): CAP_Common.Options.Capabilities = *.
    Property (S): CAP_Common.Update.Manual = *.
    Property (S): CAP_Archive = *.
    Property (S): CAP_Archive.Search = *.
    Property (S): CAP_Archive.Search.Quick = *.
    Property (S): CAP_Archive.Search.Basic = *.
    Property (S): CAP_Archive.Search.Builder = *.
    Property (S): CAP_Archive.Search.Context = *.
    Property (S): CAP_Archive.Search.Recent = *.
    Property (S): CAP_Archive.Search.Favourite = *.
    Property (S): CAP_Archive.Search.Manage = *.
    Property (S): CAP_Gateway = *.
    Property (S): CAP_Gateway.Block = *.
    Property (S): CAP_Gateway.Block.Address = *.
    Property (S): CAP_Gateway.Block.Domain = *.
    Property (S): CAP_Gateway.Block.ReportSpam = *.
    Property (S): CAP_Gateway.Block.ManagedSenders = *.
    Property (S): CAP_Gateway.OnHoldItems = *.
    Property (S): CAP_Gateway.OnHoldItems.Personal = *.
    Property (S): CAP_Gateway.OnHoldItems.Moderated = *.
    Property (S): CAP_Gateway.OnHoldItems.Release = *.
    Property (S): CAP_Gateway.OnHoldItems.Block = *.
    Property (S): CAP_Gateway.Track = *.
    Property (S): CAP_Gateway.Transport = *.
    Property (S): CAP_Gateway.Transport.Secure = *.
    Property (S): CAP_Gateway.Transport.CCM = *.
    Property (S): CAP_Gateway.Transport.Stationery = *.
    Property (S): CAP_Gateway.Transport.Stationery.None = *.
    Property (S): CAP_Gateway.Transport.Stationery.Select = *.
    Property (S): CAP_Gateway.Transport.Attachments = *.
    Property (S): CAP_Gateway.Transport.Attachments.Convert = *.
    Property (S): CAP_Gateway.Transport.Attachments.Metadata = *.
    Property (S): CAP_Gateway.Transport.Attachments.StripLink = *.
    Property (S): CAP_Continuity = *.
    Property (S): CAP_Continuity.Mailbox = *.
    Property (S): CAP_Continuity.Mailbox.ReceivedItems = *.
    Property (S): CAP_Continuity.Mailbox.SentItems = *.
    Property (S): CAP_Continuity.Monitor = *.
    Property (S): CAP_Continuity.Monitor.Auto = *.
    Property (S): CAP_Continuity.Monitor.User = *.
    Property (S): CAP_Continuity.Monitor.Admin = *.
    Property (S): CAP_Continuity.Enable = *.
    Property (S): CAP_Continuity.Enable.Auto = *.
    Property (S): CAP_Continuity.Enable.Admin = *.
    Property (S): CAP_Piits = *.
    Property (S): CAP_Piits.Management = *.
    Property (S): CAP_Piits.AutoMount = *.
    Property (S): Global.Service.AccountType = *.
    Property (S): Global.Service.Username = *.
    Property (S): Global.Service.Password = *.
    Property (S): Global.WebProxy.Enable = *.
    Property (S): Global.WebProxy.Type = *.
    Property (S): Global.WebProxy.URL = *.
    Property (S): Global.WebProxy.Username = *.
    Property (S): Global.WebProxy.Password = *.
    Property (S): Global.Settings.IgnoreLocal = *.
    Property (S): Global.AutoUpdate.URL = *.
    Property (S): Global.AutoUpdate.Enable = *.
    Property (S): Global.Logging.LogDirectory = *.
    Property (S): Global.Logging.MaxFileSize = *.
    Property (S): Global.Service.MaxRolls = *.
    Property (S): Global.Logging.Level = *.
    Property (S): Session.Pits.FolderSyncInterval = *.
    Property (S): Global.Piits.MaxMessagesPerFolder = *.
    Property (S): Global.Service.InstallDirectory = *.
    Property (S): Global.Service.DataCacheSize = *.
    Property (S): Session.Continuity.PreDupeDuration = *.
    Property (S): Session.Continuity.PostDupeDuration = *.
    Property (S): Session.Continuity.HardFrequency = *.
    Property (S): Session.Continuity.SoftDuration = *.
    Property (S): Session.Continuity.EndContinuityExchangeAvailable = *.
    Property (S): Session.Continuity.EndContinuityMimecastUnavailable = *.
    Property (S): Global.Feedback.Recipients = *.
    Property (S): DefaultUIFont = *.
    Property (S): MSIRESTARTMANAGERCONTROL = DisableShutdown
    Property (S): REBOOT = ReallySuppress
    Property (S): OUTLOOK_VERSION = Outlook 2010
    Property (S): OUTLOOK_BITNESS = x 86
    Property (S): ErrorDialog = ErrorDlg
    Property (S): SERVICE_DIR = Windows Service Mimecast
    Property (S): SecureCustomProperties = NETFRAMEWORK40FULL; NEWERPRODUCTFOUND; OLDAPPFOUND; PREVIOUSVERSIONSINSTALLED; WIX_DOWNGRADE_DETECTED; WIX_UPGRADE_DETECTED
    Property (S): MsiHiddenProperties = _LicenseAgreed; CAP_Archive; CAP_Archive.search; CAP_Archive.search.Basic; CAP_Archive.search.Builder; CAP_Archive.search.context; CAP_Archive.search.favourite; CAP_Archive.search.manage; CAP_Archive.search.quick; CAP_Archive.search.recent; CAP_Common; CAP_Common.options; CAP_Common.options.capabilities; CAP_Common.options.ChangePassword; CAP_Common.options.credentials; CAP_Common.options.network; CAP_Common.options.network.read; CAP_Common.options.network.Update; CAP_Common.update.manual; CAP_Continuity; CAP_Continuity.enable; CAP_Continuity.enable.admin; CAP_Continuity.enable.Auto; CAP_Continuity.mailbox; CAP_Continuity.mailbox.ReceivedItems; CAP_Continuity.mailbox.SentItems; CAP_Continuity.monitor; CAP_Continuity.monitor.admin; CAP_Continuity.monitor.Auto; CAP_Continuity.monitor.user; CAP_Gateway; CAP_Gateway.block; CAP_Gateway.block.address; CAP_Gateway.block.domain; CAP_Gateway.block.ManagedSenders; CAP_Gateway.block.ReportSpam; CAP_Gateway.OnHoldItems; CAP_Gateway.OnHoldItems.block; CAP_Gateway.OnHoldItems.moderated; CAP_Gateway.OnHoldItems.personal; CAP_Gateway.OnHoldItems.release; CAP_Gateway.track; CAP_Gateway.transport; CAP_Gateway.transport.attachments; CAP_Gateway.transport.attachments.convert; CAP_Gateway.transport.attachments.metadata; CAP_Gateway.transport.attachments.StripLink; CAP_Gateway.transport.CCM; CAP_Gateway.transport.secure; CAP_Gateway.transport.stationery; CAP_Gateway.transport.stationery.None; CAP_Gateway.transport.stationery.Select; CAP_Piits; CAP_Piits.automount; CAP_Piits.Management; DefaultUIFont; Global.AutoUpdate.Enable; Global.AutoUpdate.URL; Global.Feedback.Recipients; Global.Logging.Level; Global.Logging.LogDirectory; Global.Logging.MaxFileSize; Global.Piits.MaxMessagesPerFolder; Global.Service.AccountType; Global.Service.DataCacheSize; Global.Service.InstallDirectory; Global.Service.MaxRolls; Global.Service.Password; Global.Service.Username; Global.Settings.IgnoreLocal; Global.WebProxy.Enable; Global.WebProxy.Password; Global.WebProxy.Type; Global.WebProxy.URL; Global.WebProxy.Username; MimecastInstaller; PLATFORM; Session.Continuity.EndContinuityExchangeAvailable; Session.Continuity.EndContinuityMimecastUnavailable; Session.Continuity.HardFrequency; Session.Continuity.PostDupeDuration; Session.Continuity.PreDupeDuration; Session.Continuity.SoftDuration; Session.Pits.FolderSyncInterval
    Property (S): MsiLogFileLocation = C:\install.log
    Property (S): PackageCode = {6C9809C5-9DBC-4683-AE5F-3E05D53939EA}
    Property (S): ProductState = 1
    Property (S): PRODUCTLANGUAGE = 1033
    Property (S): CURRENTDIRECTORY = C:\
    Property (S): CLIENTUILEVEL = 2
    Property (S): CLIENTPROCESSID = 3672
    Property (S): MsiRestartManagerSessionKey = b9237eca8dffb44583db9105bf61f283
    Property (S): VersionDatabase = 200
    Property (S): MsiSystemRebootPending = 1
    Property (S): VersionMsi = 5.00
    Property (S): VersionNT64 = 601
    Property (S): WindowsBuild = 7601
    Property (S): ServicePackLevel = 1
    Property (S): ServicePackLevelMinor = 0
    Property (S): MsiNTProductType = 1
    Property (S): WindowsFolder = C:\windows\
    Property (S): WindowsVolume = C:\
    Property (S): System64Folder = C:\windows\system32\
    Property (S): SystemFolder = C:\windows\SysWOW64\
    Property (S): RemoteAdminTS = 1
    Property (S): TempFolder = C:\Users\TECH~1.SUP\AppData\Local\Temp\
    Property (S): CommonFilesFolder directory = C:\Program Files (x 86) \Common Files\
    Property (S): ProgramFiles64Folder = C:\Program Files\
    Property (S): CommonFiles64Folder = C:\Program Files\ Files\Fichiers
    Property (S): AppDataFolder = \\gblon-v-fp001\users$\tech.support\Application Data\
    Property (S): FavoritesFolder = \\gblon-v-fp001\users$\tech.support\Favorites\
    Property (S): NetHoodFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Network Shortcuts\
    Property (S): PersonalFolder = \\gblon-v-fp001\users$\tech.support\Documents\
    Property (S): PrintHoodFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Printer Shortcuts\
    Property (S): RecentFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Recent\
    Property (S): SendToFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\SendTo\
    Property (S): TemplateFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Templates\
    Property (S): CommonAppDataFolder = C:\ProgramData\
    Property (S): LocalAppDataFolder = C:\Users\tech.support\AppData\Local\
    Property (S): MyPicturesFolder = C:\Users\tech.support\Pictures\
    Property (S): AdminToolsFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start administration Tools\
    Property (S): StartupFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start demarrer\programmes\demarrage\
    Property (S): ProgramMenuFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start Menu\Programs\
    Property (S): StartMenuFolder = \\gblon-v-fp001\users$\tech.support\Application Data\Microsoft\Windows\Start Menu\
    Property (S): DesktopFolder = \\gblon-v-fp001\users$\tech.support\Desktop\
    Property (S): Font = C:\windows\Fonts\
    Property (S): GPTSupport = 1
    Property (S): OLEAdvtSupport = 1
    Property (S): ShellAdvtSupport = 1
    Property (S): MsiAMD64 = 6
    Property (S): Msix64 = 6
    Property (S): Intel = 6
    Property (S): PhysicalMemory = 4027
    Property (S): VirtualMemory = 5339
    Property (S): AdminUser = 1
    Property (S): MsiTrueAdminUser = 1
    Property (S): LogonUser = tech.support
    Property (S): UserSID = S-1-5-21-583907252-2049760794-725345543-5685
    Property (S): UserLanguageID = 2057
    Property (S): ComputerName = OSLLONPC052
    Property (S): SystemLanguageID = 2057
    Property (S): ScreenX = 1024
    Property (S): ScreenY = 768
    Property (S): CaptionHeight = 22
    Property (S): BorderTop = 1
    Property (S): BorderSide = 1
    Property (S): TextHeight = 16
    Property (S): TextInternalLeading = 3
    Property (S): ColorBits = 32
    Property (S): TTCSupport = 1
    Property (S): Time = 10:38:26
    Property (S): Date = 04/09/2013
    Property (S): MsiNetAssemblySupport = 4.0.30319.1
    Property (S): MsiWin32AssemblySupport = 6.1.7601.17514
    Property (S): RedirectedDllSupport = 2
    Property (S): MsiRunningElevated = 1
    Property (S): The privilege = 1
    Property (S): Name of USER = Oriel securities user
    Property (S): COMPANYNAME = Oriel Securities Ltd.
    Property (S): basis of DATA = C:\windows\Installer\14b48052.msi
    Property (S): OriginalDatabase = C:\windows\ccmcache\4\Mimecast4.0.msi
    Property (S): UILevel = 3
    Property (S): ACTION = INSTALL
    Property (S): OUTLOOK_INSTALLED = TRUE
    MSI (s) (54:F8) [10:38:26:532]: see clean files/packages, if there
    MSI (s) (54:F8) [10:38:26:532]: MainEngineThread returned 1603
    MSI (s) (C 54:4) [10:38:26:542]: RESTART MANAGER: closed Session.
    MSI (s) (C 54:4) [10:38:26:542]: sequence number number for this installation system restore.
    = Logging stopped: 04/09/2013-10:38:26 =.
    MSI (s) (C 54:4) [10:38:26:542]: strategy user 'DisableRollback' is 0
    MSI (s) (C 54:4) [10:38:26:542]: policy value 'DisableRollback' Machine is 0
    MSI (s) (C 54:4) [10:38:26:542]: meter is incremented to disable the stop. Counter after increment: 0
    MSI (s) (C 54:4) [10:38:26:542]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3:2
    MSI (s) (C 54:4) [10:38:26:542]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3:2
    MSI (s) (C 54:4) [10:38:26:542]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3:2
    MSI (s) (C 54:4) [10:38:26:542]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3:2
    MSI (s) (C 54:4) [10:38:26:542]: disable the stop against the decrement. If counter > = 0, will be denied the stop.  Counter after decrement:-1
    MSI (s) (C 54:4) [10:38:26:542]: restoration of the environment variables
    MSI (s) (C 54:4) [10:38:26:542]: object to destroy RemoteAPI.
    MSI (s) (54:B8) [10:38:26:542]: end of thread Custom Action Manager.
    MSI (c) (58:88) [10:38:26:542]: disable the stop against the decrement. If counter > = 0, will be denied the stop.  Counter after decrement:-1
    MSI (c) (58:88) [10:38:26:542]: MainEngineThread returned 1603
    = Recording stopped: 04/09/2013-10:38:26 =.

    Appreciate that any direction. Seems that maybe the MSI package might have broken this machine

    Hi Dan,

    This computer is on a domain network?

    I suggest that post you the question in Mimecast forums for more information support:

    Support community-powered Mimecast

    https://community.Mimecast.com/Mimecast

    Hope this information helps.

  • Group Policy scripts to connect to users in the domain without roaming profiles

    Hi all

    I am the network administrator in a school, and I have a problem with the configuration scripts to the default printer for our students.

    I created a Powershell script that configures the printer default, based on the ORGANIZATIONAL unit of the computer on which the user connects from.

    When a domain user without a roaming profile on a BBS post specific work for the first time, the script does not seem to set the default printer.

    HOWEVER, the script works fine if:

    (a) the user has a roaming (no longer) profile; or

    (b) the user is logged on this before given workstation.

    From what I see in procmon, Powershell actually runs when a user logs on to a workstation, for the first time, but the printer mapping is not changed.

    Is it because the user has a local profile to each new PC they connect and that the profile is not created at a point where the default printer can be defined?

    Can you see a way to work around that rather than make roaming profiles or get the user to sign out and then sign back?

    Thank you

    Peter

    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)

    If you give us a link to the new thread we can point to some resources it
  • The error of the user role assignment

    Oracle 10.2.05
    Linux environment

    I just to give a role to a user, but the user has no role-based privileges.

    Here's what I did:

    First create a user (db_user) using system id
    Then, create the schema_admin_role role
    Then run the script to assign privileges to the role
    (SELECT ' grant select, insert, update, delete on ' | owner |) '.'|| table_name | ' schema_admin_role;' from dba_tables WHERE OWNER = "another_schema";

    Then run
    grant schema_admin_role to db_user;

    The problem:
    When db_user tries to update the table X own another_schema, he gets no sufficient privileges

    But when I run (select the owner, table_name, and privilege of dba_tab_privs where dealer = "SCHEMA_ADMIN_ROLE";), I see all the privileges belonging to this role.

    All your end solution will be appreciated.

    db_user start a new session after the GRANT?

  • How to find which user have the Channel Manager

    Hello

    How to find which user are responsible for R12 Channel Manager.

    And how to invite the partner already in the list of my partners.

    Please answer me as soon as possible

    Thank you
    Vivek

    How to find which user are responsible for R12 Channel Manager.

    You can run 'The responsibility one users' simultaneous program or run the script in (how to find Out who the responsibility has been granted to A specific user? [ID] 304687.1).

    Please answer me as soon as possible

    For the responses of the ASAP, please log an SR.

    Thank you
    Hussein

Maybe you are looking for

  • IPad case

    I spent a lot of money on a case from apple for my mini iPad 4; He developed cracks on the curve at the top and bottom left, I bought it on June 29, 2016, only two months before, I don't know where to write to complain about this, ideally, I'd like m

  • Satellite Pro A10: battery question

    Hello Is it true that SAT10 Pro can be recharged 24/7 even though the battery is fully charged. My manager insists to keep me on the sector all the day becuause there lithium-ion battery. Wouldn't this overload the lattery and decrease the life / the

  • Satellite C660 - white screen after reboot

    I closed my laptop Toshiba Satellite C660-22V. I restarted immediately, but the screen is blank. The laptop was always well done loading noises it is. Any ideas on how to solve this problem?

  • problem with the vista updates, dates back to December 2008

    In December 2008, I had remote access, now have broadband services. have family vista premium with service pack 1, the problem started when I tried to install the December 2008 windows updates. checked all updates essential etc. then let problem exec

  • Movie Maker 2.6 - why it doesn't work on Vista 64?

    I was stuck for 5 days past and around with Lenovo technicians.  Today, a technician spent two hours, has hacked my computer, in order to discover why Movie Maker 2.6 turns off as soon as I click on it. It has been determined that the computer is pro