How to active Acrobat XI Standard w/o internet connection?

Hi there,
we have some users w/o the permission to use our internet connection. A few months ago it was possible to login to the computer with a user id that has internet permissions to activate Acrobat XI until Windows was reinstalled. Since a few weeks Acrobat asks to contact the activation server again and again (every few weeks). How can we stop this?

Hi,
Claudio's Link didn't helped me, but I've found this: Troubleshoot | Can't connect to Adobe.com online service
We are whitelisting https://activate.adobe.com so that everybody can use the online activation.

Similar Messages

  • How to fix Acrobat 9 Standard freezing when I try to open a PDF form I created?

    How to fix Acrobat 9 Standard freezing when I try to open a PDF form I created?

    Hi jamesh,
    Considering the error 'licensing has stopped working', I would refer you to visit this KB doc link and try troubleshooting:
    Error "Licensing has stopped working" | Windows
    Regards,
    Anubha

  • HOW TO INSTALL ACROBAT X STANDARD ON WIN VISTA 64 BIT. FROM ORIGINAL CD. GIVES ERROR MESG .. ?

    HOW TO INSTALL ACROBAT X STANDARD ON WIN VISTA 64 BIT. FROM ORIGINAL CD. GIVES ERROR MESG .. ?
    WHILE I WAS USING THIS APPLICATION ON SAME OS

    Hi shaz2048,
    Could you please provide us the Error message or the screenshot of the Error. Also did you try installing the software after copying the contents from the disc onto your computer.
    regards,
    Abhijit

  • How can I detect that there is an internet connection?

    How can I detect that there is an internet connection?
    Peter Goossens

    How can I detect that there is an internet connection?
    Peter Goossens
    Peter,
    You might want to experiment with this. It's not perfect, but...
    Class
    Imports System.IO
    Imports System.Net
    Namespace InternetConnection
    Public Class SiteInfo
    Private _displayName As String
    Private _connectionString As String
    Private Sub New(ByVal name As String, _
    ByVal connectionString As String)
    _displayName = name.Trim
    _connectionString = connectionString.Trim
    End Sub
    ''' <summary>
    ''' Gets the connection string of this instance.
    ''' </summary>
    ''' <value></value>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public ReadOnly Property ConnectionString() As String
    Get
    Return _connectionString
    End Get
    End Property
    ''' <summary>
    ''' Gets the display name of this instance.
    ''' </summary>
    ''' <value></value>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public ReadOnly Property DisplayName() As String
    Get
    Return _displayName
    End Get
    End Property
    ''' <summary>
    ''' A method which will add a new site to your collection of SiteInfo.
    ''' </summary>
    ''' <param name="siList">Your generic List(Of SiteInfo).</param>
    ''' <param name="displayName">The display name for this new instance
    ''' of SiteInfo.</param>
    ''' <param name="connectionString">The connection string for this
    ''' new instance of SiteInfo.</param>
    ''' <remarks></remarks>
    Public Shared Sub AddNew(ByRef siList As List(Of SiteInfo), _
    ByVal displayName As String, _
    ByVal connectionString As String)
    Try
    If siList Is Nothing Then
    Throw New NullReferenceException("The collection of SiteInfo cannot be null.")
    ElseIf String.IsNullOrEmpty(displayName) OrElse displayName.Trim = "" Then
    Throw New ArgumentException("The display name cannot be null or empty.")
    ElseIf String.IsNullOrEmpty(connectionString) OrElse connectionString.Trim = "" Then
    Throw New ArgumentException("The connection string cannot be null or empty.")
    Else
    If siList.Count > 0 Then
    Dim findDuplicate As IEnumerable(Of SiteInfo) = _
    From si As SiteInfo In siList _
    Where si.DisplayName.ToLower.Replace(" "c, "") = _
    displayName.ToLower.Replace(" "c, "") AndAlso _
    si.ConnectionString.ToLower.Replace(" "c, "") = _
    connectionString.ToLower.Replace(" "c, "")
    If findDuplicate.Count <> 0 Then
    Throw New ArgumentException("This is a duplicate entry.")
    Else
    siList.Add(New SiteInfo(displayName, connectionString))
    End If
    Else
    siList.Add(New SiteInfo(displayName, connectionString))
    End If
    End If
    Catch ex As Exception
    Throw
    End Try
    End Sub
    ''' <summary>
    ''' A method which will return a boolean value to indicate internet
    ''' connection status.
    ''' </summary>
    ''' <param name="siList">Your generic List(Of SiteInfo).</param>
    ''' <param name="displayName">The display name for the instance
    ''' of SiteInfo to use.</param>
    ''' <returns></returns>
    ''' <remarks></remarks>
    Public Shared Function InternetIsConnected(ByVal siList As List(Of SiteInfo), _
    ByVal displayName As String) As Boolean
    Dim retVal As Boolean = False
    Try
    If siList Is Nothing Then
    Throw New NullReferenceException("The collection of SiteInfo cannot be null.")
    ElseIf siList.Count = 0 Then
    Throw New ArgumentOutOfRangeException("Count", "The collection of SiteInfo cannot be empty.")
    ElseIf String.IsNullOrEmpty(displayName) OrElse displayName.Trim = "" Then
    Throw New ArgumentException("The display name cannot be null or empty.")
    Else
    Dim findInstance As IEnumerable(Of SiteInfo) = _
    From si As SiteInfo In siList _
    Where si.DisplayName.ToLower.Replace(" "c, "") = _
    displayName.ToLower.Replace(" "c, "")
    If findInstance.Count <> 1 Then
    Throw New ArgumentException("This instance is not in the collection of SiteInfo.")
    Else
    retVal = TestConnection(findInstance.First.ConnectionString)
    End If
    End If
    Catch ex As Exception
    Throw
    End Try
    Return retVal
    End Function
    Private Shared Function TestConnection(ByVal url As String) As Boolean
    Dim retVal As Boolean = False
    Try
    Dim request As WebRequest = WebRequest.Create(url)
    Using response As HttpWebResponse = DirectCast(request.GetResponse, HttpWebResponse)
    Using dataStream As Stream = response.GetResponseStream
    Using reader As New StreamReader(dataStream)
    Dim responseFromServer As String = reader.ReadToEnd()
    retVal = True
    End Using
    End Using
    End Using
    Catch ex As WebException
    retVal = True
    Catch ex As Exception
    retVal = False
    End Try
    Return retVal
    End Function
    End Class
    End Namespace
    Example Usage
    Public Class Form1
    Private Sub Form1_Load(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) _
    Handles MyBase.Load
    Dim siList As New List(Of InternetConnection.SiteInfo)
    InternetConnection.SiteInfo.AddNew(siList, _
    "Test1", _
    "http://dev.virtualearth.net/REST/v1/Locations/37221?o=xml")
    InternetConnection.SiteInfo.AddNew(siList, _
    "Test2", _
    "nothing here")
    InternetConnection.SiteInfo.AddNew(siList, "Test3", _
    "www.google.com")
    InternetConnection.SiteInfo.AddNew(siList, "Test4", _
    "http://fls-online.com")
    ' This will return true:
    Dim bool1 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test1")
    ' This will return false:
    Dim bool2 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test2")
    ' This will return false:
    Dim bool3 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test3")
    ' This will return true:
    Dim bool4 As Boolean = _
    InternetConnection.SiteInfo.InternetIsConnected(siList, _
    "Test4")
    Stop
    End Sub
    End Class
    Let me know your results please?
    Still lost in code, just at a little higher level.

  • How reinstall Adobe Acrobat 9 Standard for Windows 7

    How to reinstall Adobe Acrobat 9 Standard for Windows 7

    I don't believe there is any download available for Standard versions that old, but if you have a disc copy you can try using that.

  • How to use Acrobat 9 standard to create a PDF form that an Acrobat reader can save

    Hi,
    I'm evaluating Acrobat 9 standard edition. I want to create a PDF with a form that allow Acrobat Reader users to fill in the form and save to their local machine.
    I looked at "Can I save a filled out PDF form using the free Adobe Reader? "
    However, it refers to version 8 and has a link to another page that states to look in Acrobat 8 help. Well I can't anything for how to create right-enable PDF in the help.
    How can I do this in Acrobat 9?
    Thanks.

    I think that the right's enabling was added to AA9 Std. It was not part of AA8 Std as far as I know. However, you need to read the restrictions on the use of the reader rights. There is a 500 form use limit. If you exceed that limit you are supposed to contact Adobe for negotiations for further use. I do not think those restrictions have changed with AA9, but read the EULA to check it out.

  • How to Reinstall Acrobat X Standard OEM

    We recently bought 40 computers for our company that came with Acrobat X preinstalled (and cards with their serial #s for reinstall for each).  To simplify their roll-out, we sysprepped them all and now want to reinstall Acrobat X Standard on them using the licenses/serial #s we have on hand.  But I can't find ANYWHERE to download Acrobat X Standard to reinstall - please help!

    Hi MargoTSG,
    As we don't offer a trial of Acrobat X Standard, there isn't just a full-time available download source unless the licenses were purchased directly from Adobe as ESD.  Your best bet is to contact the OEM who provided the machines to see if a copy of the software was provided with the computers (buried on some installation disk) or if they have an ESD available.
    -David

  • How to activate Photoshop CS 5 without an internet connection?

    I have had my second activation of Photoshop CS 5 on a backup computer that has no internet connection.  I needed to change the operating system (Windows 7 Home to Windows 7 Professional).  I called up Adobe, and told the technician that I was de-activating CS 5, reformatting the hard drive, then I was going to re-activate Photoshop. He gave me a case number so that the next technician could easily understand what I was doing and what I needed. 
    The first time I installed Photoshop on this backup computer, I contacted Customer Service. The technician had me do several things to get to an activation screen.  I gave him both the serial number and an installation code.  He then used them to generate a unique activation code, which I typed in to activate Photoshop.  I had Photoshop on that computer, working, for a year.
    I called on August 30, after the re-formatting and installing the new operating system, I called Customer Service to get help re-activating Photoshop. 
    The first technician said I could not reactivate Photoshop.
    The second technician said it could be done, but not at his level and he would escalate the case, and someone would call me.
    After no calls, I tried again on 09/05. I was transferred to the manager.  He said it could not be done, but he would escalate the case to the "expert team," and that someone from that team would call me "tomorrow" (09/06).
    Along the way, one technician said I did not need to reactivate Photoshop because when I called about deactivating Photoshop, that technician assigned a special number that would obviate the need to reactivate. How did my computer, off-line, and my software, on a proprietary disk, know that number?  Magic?  No, not magic, it just would!
    Unless something has changed and I do not have to activate Photoshop on computers that are off-line, I need to activate Photoshop. 
    How do I get help after 12 days of trying?
    Walton

    Thank you . . . I do not get an option for Offline Activation.  When I did this a year ago, the Customer Support technician gave me a keyboard shortcut that got me to a screen where a response or installation code was generated.  Then he gave me the activation code.  I have no problem going on-line and entering a installation code and getting an activation code . . . I just cannot get to the screen where I can get the initial code.
    Despite having now 3 case numbers related to this, each Customer Support technician starts at the beginning, only to discover 30 minutes to 3 hours later that he/she does not wherewithal to do this and must escalate the case.  In the 2 weeks, no one has called me.  I wait the appropriate 24 - 48 hours (yes, not counting weekends or holidays), and the next technician starts it all over. 
    Walton

  • How to install Lion on Mac with slow internet connection.

    My father's Mac mini has a slow internet connection.  I always update it by taking the update packages that I download on my iMac to his machine.  Will I be able to do that with 10.7 (Lion) when it is purchased/downloaded from the Mac App Store?

    It seems that Apple's license terms will allow that across Macs that share the same App Store ID, but I doubt that's the case with you and your father.  Physically the update package for Lion could be moved, but the licensing issues will have to be worked out.  You're not the only person who's concerned with the issue of how to download a 4 GB file for Lion.

  • Acrobat XI can't find internet connection

    I have had Adobe CC subsciption for some time now, but recently my Acrobat stopped working. it says that it can't find internet connection. But all the other Adobe applications installed through the CC application manager are working fine.
    I've had numerous chats with Adobe agents, and with my office's IT guys, and there has been no solution.
    We use corporate anti-virus, firewall and proxy scrypts. I've had all Adobe links whitelisted that were given to me by the Adobe agents. The hosts file doesn't have any Adobe info. I've tried reinstalling n+1 number of times, with various options such as selected boot and such, and still no solution.
    Why is it that all other Adobe applications installed under the CC work fine, but Acrobat doesn't?
    It's sad that if one buys a subscription and loses internet, one would lose all the products as well. One should be allowed to work on the applications, internet connection or not.
    Please help with this Acrobat that has created a circus for me here.

    Have you also asked in http://forums.adobe.com/community/acrobat to find out if someone there has the same problem... and a solution?

  • How many downloads acrobat  x  standard

    how many down loads to different computers when I purchased acrobat x  personal and home use

    You can activate the same software on up to two machines.  You can only use the same software on one machine at any given time.
    (you can download to as many as you like, but you will not be able to activate on more than two at a time)

  • HAVING TROUBLE ACTIVATING ACROBAT X1 STANDARD

    I have downloaded the product and when I open it up its saying the serial number is correct and valid but does not match any product on the computer.  The dropdown menu in the box does not list the appropiate software to help.  Can any body help

    It sounds like you’re entering an upgrade serial number that requires a previous product to be installed or at least a serial number of a previous product to be entered.  Have you had Acrobat before or is this the first version you’ve ever purchased?

  • Problem activating Acrobat XI standard - requires 10 or 9 First?

    I'm a new user trying to set up a new computer. Being naive, I just went to the online store and bought a copy of Acrobat XL - when I try to run the program, I am told that I need to have already purchased  version 9 or 10 - what gives?

    Hi Kiro ,
    Did you try opening that file in any other browser ?If not ,please try doing that once and see if that  works for you.
    Try Repairing Acrobat once and see if  that helps.
    Launch Acrobat>Navigate to Help>Repair Acrobat Installation.
    Regards
    Sukrit Dhingra

  • Can I download Acrobat XI standard from the internet

    I bought i copy of XI standard, but it came with a CD.  I have no CD drive, would it be possible to download from the internet?

    Hi wad06
    Acrobat Standard Trial is not available. You can download the Acrobat XI Pro Trial.
    Also, if you have got the serial number for your windows product, you can get it replaced by the scanner vendor..
    You may also refer : Order product | Platform, language swap

  • I have an older version of Adobe Photoshop Lightroom and having trouble activating because I do not have internet connection

    I have an older version of Adobe Photoshop Lightroom. I have the disk and the serial number but I cannot activate because I do not have Internet. How can I activate this product?

    "Photoshop" Lightroom doesn't require activation; you just install and then type in the serial number when prompted, and it should work from thet moment; Adobe allow you to install Lr on two computers at the same time. The Internet is only really required to register your serial number, which is a very good idea in case of disaster.

Maybe you are looking for

  • Digital Camera Memory Card Reader

    Is there a device that I can plug into my computers USB port and transfer pictures from my cameras memory card to my computer..  I also have a Motorola Razor phone that I would like to transfer photos from to my computer, is there a device for that.

  • Securing Personalize on portlet page

    Can one secure the 'Personalize' link in the porlet EDIT view to a particular LDAP group? this way only those persons who are in the group can personalize?

  • Inserting an automatic date?

    I notice that when I want to insert a date, it only resets once the page has been updated. But I found a few pages on my site that has an automatic date that resets on its own, and when I tried to edit that page, all I saw was a little yellow box tha

  • Div Layout

    Dear All, I like one design, that is made by div table. I have a best knowledge in table based layout. Div based layout is attached for your reference. please help out this, how can make container like this I am making something like this, my codes a

  • Computer won't boot properly

    So with my pc, I have been having a problem where whenever I boot it up I will get the black screen of death. Basically after I start it up, instead of the login screen I get a blank black screen with just a curser. I still hear the Windows chime. Ho