Unlocking Security Feature on .pdf

Is there a way to break the security lock that is placed on a .pdf form by the author without the password? We are having to print, then scan to .pdf, in order to enter data on a number of State Government Forms. This reduces the quality some what unfortunately and we would much rather be able to enter the data directly onto the original downloaded .pdf. - Thanks, M E Brooks

These forums do not discuss how to bypass legitimate document protection systems. If you want an unsecured copy, ask the author.

Similar Messages

  • Saving to PDF using VBA in Excel 2007 using security features such as password and print restriction

    Good Afternoon,
    I am wondering if there is a way to implement the security features such as password and print restriction while saving a document to PDF using VBA in Excel 2007. 
    Regards,
    Steve

    Bill,
    Thank you.  I was able to find the security setting section.  The problem I have now, however, is writing the VBA to save to PDF and incorporate the security settings.  I thought if i applied the settings to the Excel document I was working on it would carry over, but this does not seem to be the case.  Any idea's?
    Regards,
    Steve

  • Unlocking secure pdf

    Hello
    I am wondering if Adobe is working on the ability to unlock secure pdf documents on mobile devices like the Motorola Xoom?

    Currently, Adobe Reader Touch for Windows 8 does not support DRM (Digital Rights Management) protected PDF documents and eBooks from schools and libraries.
    It would require significant development time and resource to support a proprietary (non-Adobe) form of protection (as opposed to the protection built into the PDF language).  Since Adobe Reader Touch is a relatively new product and the team is fairly small, adding the support will not happen in a short period of time.  In fact, Adobe Reader for iOS and Android (which have been available in the market much longer than Adobe Reader Touch) have not supported eBooks yet.
    Because a Surface RT tablet runs the Windows RT operating system (as opposed to the Windows 8 operating system), your options for viewing eBooks from your school may be severely limited.  Adobe Reader XI (desktop app with classic UI) is not compatible with the Windows RT operating system, either.

  • Unlocking secure PDFs on the Microsoft surface RT

    I recently bought a Windows Surface RT and the adobe application from the market place does not let me unlock secure PDF. I am currently attending the University of Phoenix and all of our text books are Apollo E-Books that are secured by protectedpdf password management. I was wondering if there will be patches for the windows RT platform that will fix this issue? If these patches are expected to occur, in what time frame wold I be looking at?

    If you had an Intel-based desktop machine, laptop, or tablet, you could install Adobe Reader XI (desktop app with the traditional Windows UI) and open the DRM-protected PDF documents from University of Phoenix.
    http://www.universityofphoenix.com/ebooks/ppdf.asp
    Unfortunately, Adobe Reader XI does not run on Microsoft Surface with Windows RT.  (More Intel-based tablets from Microsoft, Samsung, HP, Dell, etc. running Windows 8 will be released this year.)  Currently, Adobe Reader for mobile devices (iOS, Android, and Windows tablets) cannot open the DRM-protected PDF documents from University of Phoenix using the third-party technology called Vitrium's Protectedpdf due to the lack of full JavaScript support.

  • Not able to portletise an ADF application with Security Feature.

    Dear All,
    I am able to portletise a normal ADF application and is running fine on Portal. But as I add security feature to it I am not able to portletise it, For reference i am pasting my web.xml and portlet.xml. Do i need to include any filter or listener?
    ------------------------web.xml-------------------------------------------------------------
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    <description>Empty web.xml file for Web Application</description>
    <context-param>
    <param-name>javax.faces.application.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config.xml,/WEB-INF/portlet.xml</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>server</param-value>
    </context-param>
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>view.DataBindings</param-value>
    </context-param>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <init-param>
    <param-name>success_url</param-name>
    <param-value>faces/Welcome.jspx</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>adfAuthentication</servlet-name>
    <url-pattern>/adfAuthentication/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>adfAuthentication</web-resource-name>
    <url-pattern>/adfAuthentication</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>Guest</role-name>
    <role-name>oc4j-administrators</role-name>
    <role-name>users</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>Login.jspx</form-login-page>
    <form-error-page>Login.jspx</form-error-page>
    </form-login-config>
    </login-config>
    <security-role>
    <role-name>Guest</role-name>
    </security-role>
    <security-role>
    <role-name>oc4j-administrators</role-name>
    </security-role>
    <security-role>
    <role-name>users</role-name>
    </security-role>
    </web-app>
    ---------------------------------portlet.xml----------------------------------------------
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <portlet-app version="1.0" xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd">
    <portlet>
    <portlet-name>UC68PortletKunal</portlet-name>
    <display-name>UC68PortletKunal</display-name>
    <portlet-class>oracle.portlet.server.bridges.jsf.FacesPortlet</portlet-class>
    <init-param>
    <name>DefaultPage.view</name>
    <value>/SearchInput.jspx</value>
    </init-param>
    <init-param>
    <name>BridgeLifecycleListeners</name>
    <value>
    oracle.portlet.server.bridges.jsf.adf.ADFFacesBridgeLifecycleListener,oracle.portlet.server.bridges.jsf.adf.BindingFacesBridgeLifecycleListener
    </value>
    </init-param>
    <supports>
    <mime-type>text/html</mime-type>
    <portlet-mode>VIEW</portlet-mode>
    </supports>
    <supported-locale>en</supported-locale>
    <portlet-info>
    <title>UC68PortletKunal</title>
    <short-title>UC68PortletKunal</short-title>
    </portlet-info>
    </portlet>
    </portlet-app>
    Your reply is most welcomed. I am working for 2 days, if you know just give few minutes to address this issue.

    hi thanks for reply,
    I am using 10.1.3.3 version
    Steps followed are mentioned in one of the PDF
    Oracle WebCenter Framework Tutorial, 10g (10.1.3.2.0)
    B31072-02
    Here I am tring to secure some page of application as per user role usinf ADF secuiry feature.
    The application runs fine in "stand alone" mode.
    While tring portletise i am getting portlet unavilable. So i think i need to modify my portlet.xml OR web.xml
    From Welcome Page:
    I have login and logout link displayed to user not loggged in and logged in user respectively I have done using golink propery.
    Also i have some command button as:
    On clicking: Go To MyWeather Rendered to #{backing_Welcome.authenticated &&
    bindings.permissionInfo['MyWeatherPageDef'].allowsView}
    On clicking: Go To MyContent Rendered to #{backing_Welcome.authenticated &&
    bindings.permissionInfo['MyContentPageDef'].allowsView}

  • Include Security Settings in PDF Presets

    Boy does Illustrator go out of its way to make saving a PDF painful. No export, so we have to Save a Copy. Then we have to change the filename, directory, and pick a preset because it always defaults to Illustrator Default. And if we want to add security features we need to set all of them each time we export.
    There needs to be a PDF export, and the presets need to be more robust.
    Actually, there needs to be a replacement for Illustrator, jsut as inDesign replaced PageMaker.

    Ok I understand your point.
    you have tons of Illustrator files that need to be saved as pdf format with a specific pdf preset and encrypt it as well.
    What i do is to create/record an action saving my Illustrator file to the pdf format with the preset i need(Do not encrypt yet, that's another step ahead), then use the batch dialog box, located in the action flyout menu, this dialog box lets you select the action you just recorded, select a Source folder where all your Illustrator files to be converted need to be and a Destination folder where your new pdf will be created,be aware that the check fields "override actions open" as well as "save" need to be selected in order to avoid a dialog box asking you what file to open and where to save it, after all this click Ok to play the action over the files in the source folder, wait some seconds and voilá.
    Check your pdf files in your destionation folder.
    Now we'll use Acrobat Pro to encrypt the files in the destination folder.
    You need to create your own sequence to automate this process by going to the Advanced>Document Processing>Batch Processing... menu.
    A new dialog box appear, click on new sequence, type a name for this new sequence(ie. encryption test), click on select commands... button, Select the Security action from the Document Set then click add>>, then select the new added action in the right click edit and set up the encryption you want in all your documents then click ok.
    leave run commands on to ask... and select output location to same folder as originals.
    click Ok and test it, i know the setup time is long but this technique will save you time.

  • How do I unlock security on my Mac to all me to uninstall an app?

    I want to uninstall an app. I can't unlock the security feature to change settings so I can do that.

    http://support.apple.com/kb/HT1274

  • Security features in AA Pro & Acrobat Reader problem

    Hi,
    In Adobe Acrobat Pro my PDF is shown to have "no security" - everything is allowed.
    When I open that saved documnet in Reader 9.4 it has security features I did not put there.
    In particular, no adding of comments (and markups).
    Any ideas how to resolve problem welcome.

    Thanks Graffiti,
    There seems no problem with the AA pro - opening advanced features - under security properties everything is allowed.
    The problem is that when I open that same PDF in Acrobat Reader (which has no "Advanced") it does nlot allow the adding of comments.
    In Acrobat Reader on toolbar under Document > Security > Show Security Properties : Security : Document Restrictions Summary : under Commenting it is marked : Not Allowed.
    Any idea how to get around this.
    What I want to do is to be able to make PDFs and send then to someone else for adding comments but Reader does not allow this and I am not disabling it when I make the PDF with AA Pro.
    Cheers

  • Windows 8's New Security Features Explained

    When Microsoft's new operating system, Windows 8, hits the market on Oct. 26, it will be chock-full of new and enhanced features aimed at giving users more security than ever before.
    Continued here:
    http://www.securitynewsdaily.com/2320-windows-8-security-features.html
    ThinkPad: T530 / X1 Gen 2 / Helix - Yoga: Tablet 2 Pro (Win) / Yoga 3 Pro
    If you find a post helpful and it answers your question, please click the "Accept As Solution" button.
    Lenovo Advocate ~ I am not employed by Lenovo or Microsoft. I am a volunteer.
    Microsoft MVP - Consumer Security
    SpywareHammer

    Hello,
    The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
    As the question is off topic here, I am moving it to the
    Where is the Forum... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • More security features

    Can't hide or mask contact information to prevent others from viewing. This should really be a must, especilaly for those who like to snoop into your phonebook.

    Extended rights is not a security feature, but a a feature to allow users of reader to save file data. This has to be added to the PDF after the form has been created and is not something that would make sense in Distiller.

  • Security features not showing in Acrobat Reader 8?

    Just curious why the security features of an older version of Acrobat don't display in the document properties when opened with Reader 8. We do some automated processing, using Acrobat 7.0.7 Pro as the main processor, but when we run into problems with incoming documents, I've found that Reader 8 doesn't seem to see the properties.

    I think that probably no security is set. The issue with AA7 is likely that it is the prior version of AA and it does not allow editing of the current version. If you save the PDF from AA8 with Reduce File Size or PDF Optimize, you can make it backward compatible for editing. One option you can try in AA7 is to print it to a new PDF, but that may not work either.

  • PROBLEMS SETTING UP REPORTS SECURITY FEATURE

    1. Trying to follow instructions to set up the Reports Security Feature.
    2. Successfully run the script rwwwvins.sql
    3.Hitting following Error
    " Missing string(reports_security_desc) language(us) domain (wwc)sub_domain
    (sec)
    The portlets have similar names.
    The pageORACLE_REPORTS_SECURITY has a display name of :
    Missingstring(reports_security_desc) language(us) domain (wwc) sub_domain
    (sec)"
    4. Followed note 132625.1 with no joy. Same error.
    Any help ?
    null

    do you mean to say that you cannot enter any passphrase on the router web ui or on the wireless computer itself ??
    if its on the router , then upgrade / reflash the router's firmware...

  • On startup I get an Alert dialog that tells me that some security feature is not working and I should correct things in the Firefox profile. What's going on?

    On Mac OS X 10.6.6, MacBook Pro.
    When I launch Firefox I get an Alert that says,
    Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features.
    If I click OK, it goes away and Firefox seems to work fine, but I don't like this situation. Anyone know what this is?
    I've trashed the old Firefox (which left a few dynamic libs open and I had to restart to empty the trash) and I installed the latest Firefox (3.6.14), but the problem remains. I found a profile for Firefox in the /Library/Cache folder, but I don't know what to do with it. My disk has plenty of room.
    Any help or pointers appreciated

    There are a few possible causes of that error, for details on fixing it see https://support.mozilla.com/kb/Could+not+initialize+the+browser+security+component

  • Error while Portetizing ADF Application with security feature.

    Dear All,
    I am able to portletise a normal ADF application and is running fine on Portal. But as I add security feature to it I am getting error, For reference i am pasting my web.xml and portlet.xml.
    ------------------------web.xml-------------------------------------------------------------
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    <description>Empty web.xml file for Web Application</description>
    <context-param>
    <param-name>javax.faces.application.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config.xml,/WEB-INF/portlet.xml</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>server</param-value>
    </context-param>
    <context-param>
    <param-name>CpxFileName</param-name>
    <param-value>view.DataBindings</param-value>
    </context-param>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter>
    <filter-name>adfBindings</filter-name>
    <filter-class>oracle.adf.model.servlet.ADFBindingFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfBindings</filter-name>
    <url-pattern>*.jspx</url-pattern>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>adfAuthentication</servlet-name>
    <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
    <init-param>
    <param-name>success_url</param-name>
    <param-value>faces/Welcome.jspx</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>adfAuthentication</servlet-name>
    <url-pattern>/adfAuthentication/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>adfAuthentication</web-resource-name>
    <url-pattern>/adfAuthentication</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>Guest</role-name>
    <role-name>oc4j-administrators</role-name>
    <role-name>users</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>FORM</auth-method>
    <form-login-config>
    <form-login-page>Login.jspx</form-login-page>
    <form-error-page>Login.jspx</form-error-page>
    </form-login-config>
    </login-config>
    <security-role>
    <role-name>Guest</role-name>
    </security-role>
    <security-role>
    <role-name>oc4j-administrators</role-name>
    </security-role>
    <security-role>
    <role-name>users</role-name>
    </security-role>
    </web-app>
    ---------------------------------portlet.xml----------------------------------------------
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <portlet-app version="1.0" xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd">
    <portlet>
    <portlet-name>UC68PortletKunal</portlet-name>
    <display-name>UC68PortletKunal</display-name>
    <portlet-class>oracle.portlet.server.bridges.jsf.FacesPortlet</portlet-class>
    <init-param>
    <name>DefaultPage.view</name>
    <value>/SearchInput.jspx</value>
    </init-param>
    <init-param>
    <name>BridgeLifecycleListeners</name>
    <value>
    oracle.portlet.server.bridges.jsf.adf.ADFFacesBridgeLifecycleListener,oracle.portlet.server.bridges.jsf.adf.BindingFacesBridgeLifecycleListener
    </value>
    </init-param>
    <supports>
    <mime-type>text/html</mime-type>
    <portlet-mode>VIEW</portlet-mode>
    </supports>
    <supported-locale>en</supported-locale>
    <portlet-info>
    <title>UC68PortletKunal</title>
    <short-title>UC68PortletKunal</short-title>
    </portlet-info>
    </portlet>
    </portlet-app>
    Your reply is most welcomed. I am working for 2 days, if you know just give few minutes to address this issue.

    Hi,
    not sure what the error message is that you get. However, if you access an application through prortal then the security needs to be enforced by the portal, not the application itself because the portal will modify the request headers.
    Did you ask the question on the WebCenter or Portal forum here on OTN
    WebCenter Portal
    Frank

  • When I start iTunes on my home computer (Not a MAC), it automatically shuts down, and gives me the message that the Data Execution Prevention security feature has shut it down...what to do?

    When I start iTunes on my home computer (Not a MAC), it automatically shuts down, and gives me the message that the Data Execution Prevention security feature has shut it down...what to do?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it, which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

Maybe you are looking for

  • Error calling a third party WSDL from BPEL

    Hi, I am trying to invoke a third party WSDL. This WSDL belongs to Oracle OPPM. When I call this wsdl from SOAPUI or even from the Enterprise Manger, it works fine. However, when I call it from BPEL, it is giving me an error. Here is the request and

  • Select avoiding where clause

    Hello, I am using JPA in my app and I am confused because of a select that is returning data as I didn't have anything in my where clause. Select A (with problems): Query q = em.createQuery( " Select distinct p "+ " From Subgrupo sub,"+ " UsuarioSubg

  • No sound in MBP Pro 2001 under 10.8.4

    Suddenly, no sound from jack or HP. I had sound and then I hadn't. This is NOT the red light problem, related to toslink. I tried to toggle in Audio Mini, no way.

  • Update Query is running very slow

    Database version 11.2.0.2      UPDATE ps_jrnl_ln a SET a.jrnl_line_status = :"SYS_B_0" WHERE a.project_id = :"SYS_B_1" AND a.account IN ( SELECT DISTINCT c.account FROM PSTREENODE A , PSTREELEAF B , PS_OI_NODE_BAL_PC G , PS_GL_ACCOUNT_TBL C WHERE A.E

  • Remove ATML Report Format from TestStand

    Hi! It is possible to remove the ATML Report Format from TestStand (or TestExecutive) ? I already tried to remove the folder <teststand>/Components/Models/TestStandModels/ATML and then restarted the TestExecutive, but the option from the checkBox was