[CS4 Server Win]: Plugin does not run on Windows Server 2003?

Hi,
can anybody help?
My plugin is running on Windows XP and Windows Vista.
On both operation systems the scripting methods are visible in ExtendScript Toolkit and can be called by javascript.
On Windows Server 2003 my plugin is not running, the scripting methods are not visible in ExtendScript Toolkit!
What is missing?
Thanks,
Alois Blaimer

> I am using Visual Studio 2008 with the VC++ 9.0 compiler.
> Could this be a problem?
Yes.
CS4: use VC2005 + SP1
CS3: use VC2005 without SP1
CS2: use VC2003
In my previous post I described one of the problems I found out the hard way - walking around in disassembler is a pain, even more Intel and Windows, comparing to Mac, and PowerPC. Since then I only use the official tools even if others tell it worked for them, and I keep the InDesign installations for final build and test on the earliest supported operating system.
Dirk

Similar Messages

  • Group Chat feature in Office Communications Server 2007 R2 does not work in Windows Server 2008 R2 domains

       Hello to all, there are two confliting articles about this topic:
       1-
    http://technet.microsoft.com/en-us/library/upgrade-domain-controllers-to-windows-server-2008-r2(v=ws.10).aspx#BKMK_Whatsnew : this one says that it does not work "The Group Chat feature in Office Communications Server 2007 R2 does not work in Windows
    Server 2008 R2 domains". This article was updated in 2013.
       2-
    http://technet.microsoft.com/en-us/library/ee692314(office.13).aspx: this other article says that it will function "Office Communications Server 2007 R2 Group Chat will function in a Windows Server 2008 R2 forest". This article was updated in
    2010 and was refered by the first one.
       What is the correct support position for Group Chat feature in Office Communications Server 2007 R2 and Windows Server 2008 R2 domains?
       Regards, EEOC.

    Hi,
    I notice the following sentence in the link below “Office Communications Server 2007 R2, Group Chat will not function in a Windows Server 2008 R2 forest or when Group Chat member servers are joined to a Windows Server 2008 R2 domain.
    We know of an issue with changes in Windows 2008 R2 that requires a Group Chat Client and Group Chat Admin Tools hotfix. The Group Chat Client and Group Chat Admin Tools hotfixes are currently scheduled for mid-April 2010.”
    http://blogs.technet.com/b/nexthop/archive/2010/11/06/supportability-for-office-communications-server-2007-r2-and-windows-server-2008-r2.aspx
    So in my opinion, if you update to the latest version of Windows Server 2008 R2, OCS Server 2007 R2 and Group Chat Client, Group Chat Admin Tools to the latest version, it should work.
    However, the best method for you is make a lab to test the problem firstly.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • 32-bit executable does not run in Windows Server 2008

    Hi,
    Sorry if this question has been asked already. I am having trouble finding a solution in the NI knowledge base and here in the forums.
    I just created a simple UI standalone application in Labwindows/CVI with UI. It runs perfectly in XP when it was developed. When I ported this over to the Windows Server 2000 target and tried to run it, it is stuck in a Windows console and will not spawn main(). I tried both rebuilding it on the 64-bit machine as well as just running the exe as is, yielding the same results. I also tried running corflags against the exe on both the 32-bit dev machine and the 64-bit target but both output says "The specified file does no thave a valid managed header", which seems to be true for all CVI exe files.
    Through some troubleshooting, I was able to narrow it down to a call to a function in a dll (that apparently has already been working all along). If I comment out the two calls, main() would start and life is good again. I tried visually looking through the code in the project producing the dll and things are fine.
    Can someone provide me with some insight into how to proceed on this? Was it a bad build? Did I not configure the build environment correctly (I already tried changing the stack/heap usage)? Could this be caused by a bug in the software that the compiler didn't catch? What typically causes a freeze in the console that spawns main()?
    Please help! Thanks in advance!
    EDIT: BTW, I'm running LabWindows/CVI 2009 on both machines.

    One other possibility is having sufficient rights, especially if you are invoking it via some other app, rather than manually as a logged in user. If you are not logged in and instead invoke it via a web site action, I believe you will have problems reading the registry, accessing a desktop, writing to disk, etc.
    Sorry I can't be more definitive, but perhaps it will help.
    Please post your conclusion, if you find it.
    --Ian

  • Safari does not run at Windows Server 2003

    Any page I try to open at Safari, it just crashes (I mean, just closes) without any technical information.
    The most intersting fact is that when I go to preferences, just in the appearance tab make Safari close.
    And the most important fact is that I use Microsoft Windows Server 2003 R2 en-us. I NEVER was able to use Safari in any 2003 (since first Safari beta). I've tryed Safari in several of my 2003 machines (at least 4 very different ones). I got better in new versions (first Safari ones didn't even openup)
    I'v tryed so many things. Rename several folders, like safari.resources, run Microsoft Application Verifier to fool it as Windows XP, startup some services (like themes or Bonjour -- wich I use to disable), no solution at all. My sixt sense tells me that is is anything to do with some graphics rendering conflict, since it closes in the appearance and Safari have a different look from a regular Windows app window.
    Bottom line: any help ?

    The kinda answer I like: download, copy, mesh, hack. Looks very nice, must work in most cases, but not this time for me. Behavior was exactly the same, running the nightly build.
    Just for the records:
    Safari prefs in my Windows live happy in:
    C:\Documents and Settings\Administrator\Application Data\Apple Computer\Safari
    C:\Documents and Settings\Administrator\Local Settings\Application Data\Apple Computer\Safari
    These days I installed an Safari in a brand new 2003 and worked nice. Bug 4 x 1 Safari. Bug still winning.
    So, it must be some stuff, some little tricky service or software I install in my usual Windows.
    Anyway, thank you very much...
    If someone have some clue, I'll apreciate

  • Add does not run with sql server 2008

    Hi all,
    My add on in the development environment does not run with SQL SERVER 2008. It ran well with SQL Server 2005 and sap b1 2207 B.
    On executing the project file system throws an error "YOU ARE NOT CONNECTED TO THE COMPANY"
    we are trying this scenario on a test machine where SAP B1 2007B with temporary license for one month and SQL server 2008
    is installed.
    Help needed.
    Thanking you
    Pradnya

    Hi Use this
    Dim i as integer
    i=oCompany.Connect()
    if i<> 0 Then
    msgbox(ocompany.GetLastErrorDescription ())
    end if
    the you will get the error description also use try catch wherever necessary
    Alternatively you can use
    Dim SboGuiApi As SAPbouiCOM.SboGuiApi
    Dim sConnectionString As String
    Set SboGuiApi = New SAPbouiCOM.SboGuiApi
    sConnectionString = Command
    SboGuiApi.Connect sConnectionString
    Set SBO_Application = SboGuiApi.GetApplication()
    Set ocompany = New SAPbobsCOM.Company 'initialate DI company object
      ocompany = SBO_Application.Company.GetDICompany
    HTH,
    Atul

  • Does Safari run in Windows Server 2008 R2 (Terminal Services)?

    does Safari run in Windows Server 2008 R2 (Terminal Services)?

    Hi Jess,
    Here are two things I suggest you check:
    The Monitoring interval is set to 900 minutes, would the profile size get reduced after 15 hours and run
    gpupdate/force?
    Since the Sessenv.dll version is higher than the ones described in KB 2575946, the issue is supposed to be fixed. I suggest you run System File Checker to scan all protected system files.
    In addition, you can also collect Gpsvc.log to determine if policies are applied successfully.
    More information for you:
    System File Checker (sfc)
    http://technet.microsoft.com/en-us/library/bb491008.aspx
    Group Policy not being applied
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/9884d06d-b5f8-44c9-a703-7b5211f1e0ba/group-policy-not-being-applied?forum=winserverGP
    Best Regards,
    Amy

  • I m working in an organization where web-sense is installed to block all irrelevant sites, i have installed itunes but it does not run a window pops up with message 'itunes is not connected to the network' can anyone help me out?

    i m working in an organization where web-sense is installed to block all irrelevant sites, i have installed itunes but it does not run a window pops up with message 'itunes is not connected to the network' can anyone help me out?

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

  • My JavaApplets does not run in WINDOWS XP

    Java Applets do not run in windows xp internet explorer. Even I have downloaded and installed the latest version of JVM from Sun site but it does not work. Please help me in getting rid of this probelm.

    do you get an error message? what happens?

  • SQL Server Maintenance Plan does not run DEL command in .BAT

    Hello,
    I have a T-SQL Statement task in my Maintenance Plan that runs a .BAT file and it runs OK when manually executed.  The .BAT file has a del d:\backups\*.* command in it. However, when the plan runs automatically at a scheduled time, the .BAT file does
    not delete files.  Could this be a permissions issue?
    Paul

    Hi Paul,
    This looks like a permission issue.  Make sure the account SQL instance is running has delete permissions on the folder from which you are trying to delete and also make sure the account has execute permission on that batch file.
    Thanks,
    Bhanu

  • [NOT SOLVED] Munin plugin does not run

    Hi, I've created my own plugin to check the amount of connections tor opens. Couldn't find anything out of the box. But if there is I'd like to know.
    THe script goes as this:
    #!/bin/sh
    case $1 in
    config)
    cat <<'EOM'
    graph_title TOR connections
    graph_vlabel TOR
    load.label TOR
    EOM
    exit 0;;
    esac
    printf "load.value "
    netstat -anp --tcp|grep tor -c
    as the netstat command requires root priviliges I've added this to plugin-conf.d/munin-node
    [tor_connections]
    user root
    The problem is that the plugin only runs as root the munin user seems not to be able to run it.
    $ munin-run tor_connections
    # Warning: Root privileges are required to change user/group. The plugin may not behave as expected.
    load.value (Not all processes could be identified, non-owned process info
    will not be shown, you would have to be root to see it all.)
    What else is needed to have munin run this plugin successfully?
    Last edited by theking2 (2014-12-16 20:56:36)

    Being open for some time now I assume that this mystery will not be solved here.

  • Windows Server Backup scheduled task run successfully but backup do not start (not running) on Windows Server 2012

    Hi,
    A backup job has been setup on Windows Server 2012 (Platform: Win32NT; ServicePack: ; Version: 6.2.9200.0; VersionString : Microsoft Windows NT 6.2.9200.0) via Windows Backup Software UI (Local Backup 1.0).
    It is appearing as a scheduled task "\Microsoft\Windows\Backup\Microsoft-Windows-WindowsBackup" belonging to user 'nt authority\system' in task scheduler.
    The problem is that the Backup job never start despite the scheduled task running and completing successfully (when run automatically or manually)!
    Would you be able to explain why and assist in resolving that issue?
    Here is what we know:
    When the backup is run manually via the Windows Backup Software UI, it works fine.
    When the backup is run via command line (as set in schedule task) in a cmd command prompt (as local/domain 'administrator' or as 'nt authority\system' which is possible by running command prompt via 'PsExec.exe -i -s cmd'), something like "%windir%\System32\wbadmin.exe
    start backup -templateId:{f11eb3aa-74e7-4ff4-a57b-d8d567ee3f77} -quiet", it works fine.
    If you manually run the preset scheduled task while logged in as administrator, the task run and complete successfully but the backup job does not start.
    Idem if you schedule task is run automatically at scheduled time.
    The schedule task run and complete successfully but the backup job does not start.
    It is confirmed by running the following in a command prompt as 'nt authority\system':
    schtasks /run /tn "\Microsoft\Windows\Backup\Microsoft-Windows-WindowsBackup"
    SUCCESS: Attempted to run the scheduled task "\Microsoft\Windows\Backup\Microsoft-Windows-WindowsBackup".
    Despite success result, the Backup job does not start running...
    No errors or warning appears anywhere in Event Logs (Microsoft > Windows > Backup or Task Scheduler) nor in the scheduled task History tab. The schedule task complete successfully but no Backup job is run...
    If scheduled task automatically set by Windows Backup software is duplicated (copied) and set manually it runs fine as 'administrator' and as 'nt authority\system' (subject that 'nt authority\system' is added to the 'Backup Operators' AD group).
    Here is an export of the current pre-set schedule task, is there any settings that need to be changed to make it works?
    <?xml version="1.0" encoding="UTF-16"?>
    <Task version="1.4" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
      <RegistrationInfo>
        <Author>MYDOMAIN\SERVER1</Author>
        <SecurityDescriptor>D:AR(A;OICI;GA;;;BA)(A;OICI;GR;;;BO)</SecurityDescriptor>
      </RegistrationInfo>
      <Triggers>
        <CalendarTrigger id="Trigger 1">
          <StartBoundary>2014-07-14T21:00:00</StartBoundary>
          <Enabled>true</Enabled>
          <ScheduleByDay>
            <DaysInterval>1</DaysInterval>
          </ScheduleByDay>
        </CalendarTrigger>
      </Triggers>
      <Principals>
        <Principal id="Author">
          <UserId>S-1-5-18</UserId>
          <RunLevel>HighestAvailable</RunLevel>
        </Principal>
      </Principals>
      <Settings>
        <MultipleInstancesPolicy>Parallel</MultipleInstancesPolicy>
        <DisallowStartIfOnBatteries>true</DisallowStartIfOnBatteries>
        <StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
        <AllowHardTerminate>true</AllowHardTerminate>
        <StartWhenAvailable>true</StartWhenAvailable>
        <RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
        <IdleSettings>
          <StopOnIdleEnd>false</StopOnIdleEnd>
          <RestartOnIdle>false</RestartOnIdle>
        </IdleSettings>
        <AllowStartOnDemand>true</AllowStartOnDemand>
        <Enabled>true</Enabled>
        <Hidden>false</Hidden>
        <RunOnlyIfIdle>false</RunOnlyIfIdle>
        <DisallowStartOnRemoteAppSession>false</DisallowStartOnRemoteAppSession>
        <UseUnifiedSchedulingEngine>false</UseUnifiedSchedulingEngine>
        <WakeToRun>false</WakeToRun>
        <ExecutionTimeLimit>P3D</ExecutionTimeLimit>
        <Priority>7</Priority>
      </Settings>
      <Actions Context="Author">
        <Exec>
          <Command>%windir%\System32\wbadmin.exe</Command>
          <Arguments>start backup -templateId:{f11eb3aa-74e7-4ff4-a57b-d8d567ee3f77} -quiet</Arguments>
        </Exec>
      </Actions>
    </Task>
    Thank you in advance for your feedback.

    Once again, the issue is not to run the backup manually from the command line but to have it run via the scheduled task setup by the Windows Backup software.
    By default, the schedule task is to be run as NT Authority\System, and when run under this account, the backup does not start (even though account is member of Backup Operators) and job can manually be run via elevated command prompt. This is not a normal
    behavior and constitute a major bug in Windows Server 2012.
    From my understanding the NT Authority\System account is a built-in account from Windows that should by default be part of the Administrators group (built-in) even though it does not explicitly appears like it in AD by default.
    This account shall have by default Administrators rights and Backup Operators rights (via the Administrators group) without being explicitly added to those groups (http://msdn.microsoft.com/en-gb/library/windows/desktop/ms684190%28v=vs.85%29.aspx). By design
    it is supposed to be the most powerful account which has unrestricted access to all local system resources. If that is not the case (as it seems) then this would constitute a major bug in Windows Server 2012 edition.
    As said previously and as you confirmed, currently by default NT Authority\System on Windows 2012 server cannot start backup manually via an elevated command prompt unless it is manually added to Backup Operators (or Administrators) group. But wouldn't that
    constitute a bug of Windows Server 2012?
    Our server has not yet been restarted since I added NT Authority\System account to the Administrators group explicitly manually so I cannot yet confirmed it would sort the issue. Indeed it is heavily in use so cannot easily be restarted. Will confirm when
    done.
    We also have an additional problem where after a while of last reboot, part of the Exchange ECP can no longer be properly loaded in the web browser due to compilation error (compilation is done via NT Authority\System account which seems to no longer have
    sufficient right to compile .NET code). What is strange is that it works at first and then stop working at some point... I am hopeful that adding NT Authority\System to the Administrators group would sort this issue as well but once again, that shall not be
    needed!!!
    Could a Windows Server 2012 update introduced some security policy changes or else that prevent NT Authority\System to have full power?

  • Weblogic Startup Class does not run as Windows Service

    If you know the answer, plase send me an email at [email protected]
    I'm running a weblogic startup class that starts a Thread. I need to
    run a batch program that should be running as long as WebLogic is
    running (to process new orders).
    It works fine when I run WebLogic (5.1 SP8) from a script, but causes
    problem when I'm running it as a Windows Service. It calls the
    startup class, however, the startup class never spawns the Thread
    class.
    Following is excerpts from different components:
    =============================================================
    *** weblogic.properties ***
    weblogic.system.startupClass.pdfCreatorStart=WebLogicStartupPdfCreator
    *** WebLogicStartupPdfCreator.java ***
    public class WebLogicStartupPdfCreator implements T3StartupDef {
    public String startup(String name, Hashtable args) throws
    Exception {
    Thread t = new ProductionPdfBatchRunner();
    t.start();
    return "success";
    *** ProductionPdfBatchRunner.java ***
    public class ProductionPdfBatchRunner extends Thread {
    public void run() {
    try {
    //work being done here
    this.sleep(30000);
    catch (InterruptedException ie) {               
    catch(Exception e) {
    e.printStackTrace();
    =============================================================
    Thanks for any help

    Hi,
    Ok. Few suggestions.
    1. Can you review the SAP note:
    552286  Troubleshooting for the SAP Web Dispatcher
    2. When you said: "web dispatcher does not get started ", what error you got ? Can you be more details here ?
    3. Please check the trace file dev_webdisp" that generated in the work directory. If the log entries is not abvious, increase the trace level to 2 or 3, and reproduce and re-check the trace file.
    4. What is the output of the command "sapwebdisp -v"
    5. How about sapwebdisp.pfl ? Are those settings correct ?
    Hope this helps.
    Regards,
    Vincent

  • RCU does not run on Windows XP

    I am trying to execute the rcu.bat file on my Windows XP SP2 machine and it does not work. An install screen does not come up, it only opens the directory for my Oracle Home installation and does nothing else!! How do I get this to work???
    Thanks so much!

    Pl provide details of what exactly you are installing. This forum is meant for issues related to database installs. If you are installing SOA Suite, pl post in the SOA forums at http://forums.oracle.com/forums/category.jspa?categoryID=194
    Pl see if this blog post can help - http://blogs.oracle.com/SOA/2009/08/installing_oracle_soa_suite_11.html
    HTH
    Srini

  • NWBC 3.0 PL3 (PL4) does not run on windows 2008 R2 64BIT

    Hey,
    we installed 5102369_04 which is the NWBC 3.0 PL4 , on a platform patched with the latest windows patches, for windows server 2008 R2 64bit. Gui 720
    Result : when the NWBC-icon is clicked, fastly a screen is popped (like starting a program)
    But furthermore absolutely nothing happens.
    Is NWBC 3.0 supported on windows 2008 R2  ?
    thx,
    B.

    .net framework 3.5 is a feature that comes with windows 2008 R2. But what is different from previous versions it is that the feature has to be initialized.
    Now the NWBC is running locally on the server perfectly, but when pushing it to citrix-clients, you cannot maximize the NWBC-window, resulting in the thread below :-((
    NWBC 3.0 PL4 and WIndows 2008 R2 Citrix.

  • HP support assistant does not run on Windows 7

    HP connection manager reports error message upon startup.  Defaults to XP on compatability check.
    Does HP Advisor run on windows 7?

    Here is the latest version of HP Support assistant that is compatible with Windows 7:
    ftp://ftp.hp.com/pub/softpaq/sp68001-68500/sp68201​.exe
    Here is the link to Windows 7 compatible HP Advisor:
    ftp://ftp.hp.com/pub/softlib/software11/COL34630/p​v-85800-1/sp46210.exe
    I am an HP employee.
    Regards,
    Vidya
    Make it easier for other people to find solutions, by marking my answer “Accept as Solution” if it solves your problem.
    ***Click on "Thumbs up" button to the bottom right side of my post to say thanks!***

Maybe you are looking for

  • Configuration issue on two items for system center 2012 config manager

    My first issue was at the beginning of the install trying to extend the AD schema for system center 2012 config manager version 7.5.1561.0. The path is missing for SMSSetup\Bin\x64\ to execute Extadsch.exe is not on my disc. There is only a x86 and 6

  • Hyperlink highlights issue from upgrade to Acrobat 9

    Hello I have recently upgraded to Adobe Acrobat 9 Pro Extended. I have a pdf created from ArcGIS and Map2PDF which contains hyperlinks. The hyperlinks work fine but when selecting them they highlight a black rectangle area which contains the hyperlin

  • WIP&Settlement Process order

    Hi, We calculate WIP weekly basis and WIP used to credited to a Balance sheet acct and DR to a P&L acct (which is generally NOT a Cost Element ) Here our Doubt, WIP was calculating irrespective of Settlement that is we used to see the Doucument (DR a

  • Taxinn  and Pricing procedure

    Dear MM Experts,                       I am working on ECC 6.0 and decided to implement taxinn procedure. I have made both procedures and it is working for service tax is ok. But It is not working with VAT/CST taxes. It is highly appreciable If any o

  • Re: Installation in Vista

    is it possible to install netweaver portals free software from the SDN site onto vista premium?