Droplet not creating folder cs4 photoshop windows 7

so i created a script that creats folder and subfolders inside ( folder1\subfolder1\subfolder2 etc" and i run the script in photoshot cs4 11.0 it creats the foldets no prob.  yet when i creat a droplet it wont work. the folders dont get made... i have admin rights and am logged in as admin all the time. when the droplet is run it will either launch photoshop or bring the running photoshop to the front, the taskbar icon flashes and after a min or 2 i get the error, " droplet couldnt communicate with photoshop"
can anyone help me out on rhis please?
thank you and have a great day.
hb.

no, i didnt. i didnt want to make posts all over
. i have seen other do that and get yelled at and whatnot. i thought this wou
ld have been the best spot but i might be wrong. should i
close this out and repost there? and ty for taking the time to read and reply.

Similar Messages

  • (now with script code) droplet not creating folder cs4 photoshop windows 7

    (i also posted this in the windows section but was told i should post here insted so i will try to close that one out)
    so i created a script that creats folder and subfolders inside (  folder1\subfolder1\subfolder2 etc" and i run the script in photoshot cs4  11.01 it creats the foldets no prob.  yet when i creat a droplet it wont  work. the folders dont get made... i have admin rights and am logged in  as admin all the time. when the droplet is run it will either launch  photoshop or bring the running photoshop to the front, the taskbar icon  flashes and after a min or 2 i get the error, " droplet couldnt  communicate with photoshop"
    can anyone help me out on rhis please?
    thank you  and have a great day.
    ok, please dont laugh at me over my poor scripting skills. i have none and have never programed.  ok here is the script i use to make folders
    var myFolder = new Folder('/d/Documents and Settings/testing/Desktop/tiff');
    if(!myFolder.exists) myFolder.create();
    var myFolder = new Folder('/d/Documents and Settings/testing/Desktop/tiff/800med');
    if(!myFolder.exists) myFolder.create();
    var myFolder = new Folder('/d/Documents and Settings/testing/Desktop/tiff/1333med');
    if(!myFolder.exists) myFolder.create();
    var myFolder = new Folder('/d/Documents and Settings/testing/Desktop/tiff/large');
    if(!myFolder.exists) myFolder.create();
    var myFolder = new Folder('/d/Documents and Settings/testing/Desktop/tiff/mls467');
    if(!myFolder.exists) myFolder.create();
    var myFolder = new Folder('/d/Documents and Settings/testing/Desktop/tiff/mls533');
    if(!myFolder.exists) myFolder.create();
    var myFolder = new Folder('/d/Documents and Settings/testing/Desktop/tiff/thumb');
    if(!myFolder.exists) myFolder.create();
    so i hope this helps in the quest to solve my probs.
    hb

    Also the path itself looks strange as Documents and Settings is usually on drive C also the desktop is normally on drive C.
    This path would normally be:
    var myFolder = new Folder("~/Desktop/tiff"');

  • Droplets not working PS CS4

    I have created droplets for Noiseware actions in PS CS4. When I try to run the action either by dropping images directly onto the droplet on the desktop, or by trying an export action from Lightroom (which is what I really want to do), I get a Microsoft Windows pop up box with the message "Adobe Photoshop Droplet has stopped working".
    I have also tried changing the compatibility of the droplet to run as administrator, I then get a different error message, which says, "Droplet couldn't communicate with Photoshop".
    Have also tried creating droplets for other simple actions other than Noiseware, with the same results.
    Any advice much appreciated.
    Rob
    Dell XPS420 Quad Core 2.4Ghz, 4GB RAM, Windows Vista 32-bit SP1, PS CS4 and Lightroom 2.1

    I have have created a droplet in Ps5, and when I tried running it in Lr3 and I kept prompted with a dialog box stating "droplet couldn't communicate with photoshop" after googling for a while I clicked on a link that pointed me to this forums, after reading OscylO and some of the above comments, I came out with a more detailed solution below:
    After creating the droplet ".exe" file, for example MyPsDroplet.exe
    Locate the droplet file I have just created with Windows Explorer
    Right-click on that file and select "Properties"
    A dialog box will appear with the title MyPsDroplet.exe
    Checks the checkbox that stated "Run this program as an administrator" and then the "OK" button (as highlighted below)
    And when I run my droplet again (made sure that Ps is not running or it must "Run as administrator"), the "User Account Control" dialog box will appear, asking my permission if it is to continue executing my MyPsDroplet.exe droplet, and I simply click on the "Yes" button, and "Wah-La!" my droplet is working again, in Windows 7 with UAC enabled.

  • Clipping paths not working in CS4 on Windows

    I have an image of a dohnut on a plate. I want a clippint path around the dohnut and one in the dohnut hole. Using the option icons does not give me a result of just a dohnut for placement over a color or image background in an Indesign page. I've tried this on Mac and it works just fine. What's the problem with my Photoshop CS4 on Windows?
    TIA

    Adendum.
    Ok. It works, but you have to selected the icon on the far right before drawing the first path, or select the paths with paths selection tool/direct selection tool, and then click the right icon. Otherwiswe the result is inverted - you get the image area outside the large clipping and the area inside the small clipping when place over color or image on a page.
    If I use the magic wand to select the area around and inside the doughnut and choose Make Selection... in the Paths pallet, then the function works regardless of what paths icon is initially selected.
    Hmmm.

  • Can not create a file under \window\system32 folder

    How do I create a folder in \windows\system32 in x64 machine through java code?
    Creating a file/folder under \windows\system32 fails and java creates a folder in \windows\syswow64 folder.
    pls see the code attached for example.
    My client wants to create a folder using my application.
    I dont want to use any native code suggested by microsoft. You can see in the following link
    http://msdn2.microsoft.com/en-us/library/aa365743(VS.85).aspx
    import java.io.*;
    public class FileTest{
         FileTest(){
              boolean created = writeFile();
              if (created)
                   System.out.println("File Created Successfully");
              else
                   System.out.println("Could not able to create the file");
         public static void main (String args[]){
              FileTest ft = new FileTest();
         public boolean writeFile(){
              try{
              Writer output = null;
              String text = "Sample Test File";
              if(!(new File("c:\\windows\\system32\\customFIle").exists())){
                   new File("c:\\windows\\system32\\customFIle").mkdirs();
              File file = new File("c:\\windows\\system32\\customFIle\\write.txt");
              output = new BufferedWriter(new FileWriter(file));
              output.write(text);
              output.close();
              return true;
              }catch(IOException ioex){
                   System.out.println(ioex);
              return false;
    Thanks in advance

    java_mani wrote:
    How do I create a folder in \windows\system32 in x64 machine through java code?Can the user that executes this Java code create "manually" a folder in that directory?
    Creating a file/folder under \windows\system32 fails and java creates a folder in \windows\syswow64 folder.
    pls see the code attached for example.
    My client wants to create a folder using my application.
    I dont want to use any native code suggested by microsoft. You can see in the following link
    http://msdn2.microsoft.com/en-us/library/aa365743(VS.85).aspx
    Why not?

  • Subdivisions not visible in CS4 PHotoshop Extended

    I hav been using CS3 without a problem - today I starting testing CS4 and found that I could not get the subdivision lines to display when I Show> Grid.  The main grid displays fine - but no matter what I do, I cant get the subdivision lines to display.
    I have the grid set to .25 inch and Subdivisions set to 6.
    The same file displays the grid and subdivisions in CS3 Photoshop so I'm pretty sure it's not the file..
    Any ideas here??

    Yes I tried turning off OpenGL - but then something even weirder happened.... I had the grid set to .25 and the subdivisions to 2 and the document grid lines switched to GRID lines at .14999... I reopened the preferences and saw that the grid setting had changed on its own to this value....  I was able to reset it back to .25, but then as before I was only getting 4 gridlines per inch with no sudivisions showing....
    I use photoshop among other things to create floorplans - the grid lines and subdivisions are critical for me to work in scale....
    Grid and subdivision lines are showing correctly when i open the same document in CS3

  • Netlogon and SYSVOL shares are not created after DCPROMO in Windows 2012

    Hi
    When i run a dcpromo on my windows 2012 server (all dc's are windows 2012)
    On the new domain controller i don't have sysvol or netlogon share.
    All the sugestions i found in social refer to FRS but in server 2012 DFS is used, no idea how to troubel shoot this problem.
    All dcdiag on all DC before promo where clean
    dcidag on srv01 the new dc shows:
    Doing initial required tests
       Testing server: Bas\SRV01
          Starting test: Connectivity
             ......................... SRV01 passed test Connectivity
    Doing primary tests
       Testing server: Bas\SRV01
          Starting test: Advertising
             Warning: DsGetDcName returned information for
             \\SRV09.dikkenberg.local, when we were trying to reach SRV01.
             SERVER IS NOT RESPONDING or IS NOT CONSIDERED SUITABLE.
             ......................... SRV01 failed test Advertising
          Starting test: FrsEvent
             ......................... SRV01 passed test FrsEvent
          Starting test: DFSREvent
             There are warning or error events within the last 24 hours after the
             SYSVOL has been shared.  Failing SYSVOL replication problems may cause
             Group Policy problems.
             ......................... SRV01 passed test DFSREvent
          Starting test: SysVolCheck
             ......................... SRV01 passed test SysVolCheck
          Starting test: KccEvent
             ......................... SRV01 passed test KccEvent
          Starting test: KnowsOfRoleHolders
             ......................... SRV01 passed test KnowsOfRoleHolders
          Starting test: MachineAccount
             ......................... SRV01 passed test MachineAccount
          Starting test: NCSecDesc
             ......................... SRV01 passed test NCSecDesc
          Starting test: NetLogons
             Unable to connect to the NETLOGON share! (\\SRV01\netlogon)
             [SRV01] An net use or LsaPolicy operation failed with error 67,
             The network name cannot be found..
             ......................... SRV01 failed test NetLogons
          Starting test: ObjectsReplicated
             ......................... SRV01 passed test ObjectsReplicated
          Starting test: Replications
             ......................... SRV01 passed test Replications
          Starting test: RidManager
             ......................... SRV01 passed test RidManager
          Starting test: Services
             ......................... SRV01 passed test Services
          Starting test: SystemLog
             A warning event occurred.  EventID: 0x000727A5
                Time Generated: 02/26/2013   21:55:22
                Event String:
                The WinRM service is not listening for WS-Management requests.
             An error event occurred.  EventID: 0x00001001
                Time Generated: 02/26/2013   21:58:10
                Event String:
                The machine SRV01 attempted to join the domain dikkenberg.local but
    failed. The error code was 1332.
             A warning event occurred.  EventID: 0x000727A5
                Time Generated: 02/26/2013   22:00:04
                Event String:
                The WinRM service is not listening for WS-Management requests.
             A warning event occurred.  EventID: 0x000727A5
                Time Generated: 02/26/2013   22:08:43
                Event String:
                The WinRM service is not listening for WS-Management requests.
             A warning event occurred.  EventID: 0x0000008E
                Time Generated: 02/26/2013   22:10:22
                Event String:
                The time service has stopped advertising as a time source because th
    e local clock is not synchronized.
             A warning event occurred.  EventID: 0x00001796
                Time Generated: 02/26/2013   22:24:05
                Event String:
                Microsoft Windows Server has detected that NTLM authentication is pr
    esently being used between clients and this server. This event occurs once per b
    oot of the server on the first time a client uses NTLM with this server.
             ......................... SRV01 failed test SystemLog
          Starting test: VerifyReferences
             ......................... SRV01 passed test VerifyReferences
       Running partition tests on : ForestDnsZones
          Starting test: CheckSDRefDom
             ......................... ForestDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... ForestDnsZones passed test
             CrossRefValidation
       Running partition tests on : DomainDnsZones
          Starting test: CheckSDRefDom
             ......................... DomainDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... DomainDnsZones passed test
             CrossRefValidation
       Running partition tests on : Schema
          Starting test: CheckSDRefDom
             ......................... Schema passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Schema passed test CrossRefValidation
       Running partition tests on : Configuration
          Starting test: CheckSDRefDom
             ......................... Configuration passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Configuration passed test CrossRefValidation
       Running partition tests on : dikkenberg
          Starting test: CheckSDRefDom
             ......................... dikkenberg passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... dikkenberg passed test CrossRefValidation
       Running enterprise tests on : dikkenberg.local
          Starting test: LocatorCheck
             ......................... dikkenberg.local passed test LocatorCheck
          Starting test: Intersite
             ......................... dikkenberg.local passed test Intersite
    C:\Users\administrator.DIKKENBERG>
    Dcdiag on good dc:
    Performing initial setup:
       Trying to find home server...
       Home Server = SRV09
       * Identified AD Forest.
       Done gathering initial info.
    Doing initial required tests
       Testing server: Bas\SRV09
          Starting test: Connectivity
             ......................... SRV09 passed test Connectivity
    Doing primary tests
       Testing server: Bas\SRV09
          Starting test: Advertising
             ......................... SRV09 passed test Advertising
          Starting test: FrsEvent
             ......................... SRV09 passed test FrsEvent
          Starting test: DFSREvent
             There are warning or error events within the last 24 hours after the
             SYSVOL has been shared.  Failing SYSVOL replication problems may cause
             Group Policy problems.
             ......................... SRV09 passed test DFSREvent
          Starting test: SysVolCheck
             ......................... SRV09 passed test SysVolCheck
          Starting test: KccEvent
             A warning event occurred.  EventID: 0x80000B46
                Time Generated: 02/26/2013   22:42:36
                Event String:
                The security of this directory server can be significantly enhanced
    by configuring the server to reject SASL (Negotiate,  Kerberos, NTLM, or Digest)
     LDAP binds that do not request signing (integrity verification) and LDAP simple
     binds that  are performed on a cleartext (non-SSL/TLS-encrypted) connection.  E
    ven if no clients are using such binds, configuring the server to reject them wi
    ll improve the security of this server.
             ......................... SRV09 passed test KccEvent
          Starting test: KnowsOfRoleHolders
             ......................... SRV09 passed test KnowsOfRoleHolders
          Starting test: MachineAccount
             ......................... SRV09 passed test MachineAccount
          Starting test: NCSecDesc
             ......................... SRV09 passed test NCSecDesc
          Starting test: NetLogons
             ......................... SRV09 passed test NetLogons
          Starting test: ObjectsReplicated
             ......................... SRV09 passed test ObjectsReplicated
          Starting test: Replications
             ......................... SRV09 passed test Replications
          Starting test: RidManager
             ......................... SRV09 passed test RidManager
          Starting test: Services
             ......................... SRV09 passed test Services
          Starting test: SystemLog
             An error event occurred.  EventID: 0x00000457
                Time Generated: 02/26/2013   21:57:13
                Event String:
                Driver Samsung CLP-320 Series required for printer Samsung CLP-320 S
    eries is unknown. Contact the administrator to install the driver before you log
     in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 02/26/2013   21:57:13
                Event String:
                Driver DYMO LabelWriter 400 Turbo required for printer DYMO LabelWri
    ter 400 Turbo is unknown. Contact the administrator to install the driver before
     you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 02/26/2013   21:57:13
                Event String:
                Driver Send to Microsoft OneNote 15 Driver required for printer Verz
    enden naar OneNote 2013 is unknown. Contact the administrator to install the dri
    ver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 02/26/2013   21:57:14
                Event String:
                Driver Microsoft XPS Document Writer required for printer Microsoft
    XPS Document Writer is unknown. Contact the administrator to install the driver
    before you log in again.
             A warning event occurred.  EventID: 0x000016AF
                Time Generated: 02/26/2013   22:34:50
                Event String:
                During the past 4.24 hours there have been 20 connections to this Do
    main Controller from client machines whose IP addresses don't map to any of the
    existing sites in the enterprise. Those clients, therefore, have undefined sites
     and may connect to any Domain Controller including those that are in far distan
    t locations from the clients. A client's site is determined by the mapping of it
    s subnet to one of the existing sites. To move the above clients to one of the s
    ites, please consider creating subnet object(s) covering the above IP addresses
    with mapping to one of the existing sites.  The names and IP addresses of the cl
    ients in question have been logged on this computer in the following log file '%
    SystemRoot%\debug\netlogon.log' and, potentially, in the log file '%SystemRoot%\
    debug\netlogon.bak' created if the former log becomes full. The log(s) may conta
    in additional unrelated debugging information. To filter out the needed informat
    ion, please search for lines which contain text 'NO_CLIENT_SITE:'. The first wor
    d after this string is the client name and the second word is the client IP addr
    ess. The maximum size of the log(s) is controlled by the following registry DWOR
    D value 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon\Parameter
    s\LogFileMaxSize'; the default is 20000000 bytes.  The current maximum size is 2
    0000000 bytes.  To set a different maximum size, create the above registry value
     and set the desired maximum size in bytes.
             A warning event occurred.  EventID: 0x0000000B
                Time Generated: 02/26/2013   22:42:06
                Event String:
                Custom dynamic link libraries are being loaded for every application
    . The system administrator should review the list of libraries to ensure they ar
    e related to trusted applications. Please visit http://support.microsoft.com/kb/
    197571 for more information.
             A warning event occurred.  EventID: 0x000727AA
                Time Generated: 02/26/2013   22:43:09
                Event String:
                The WinRM service failed to create the following SPNs: WSMAN/SRV09.d
    ikkenberg.local; WSMAN/SRV09.
             A warning event occurred.  EventID: 0x000003F6
                Time Generated: 02/26/2013   22:43:11
                Event String:
                Name resolution for the name _msdcs.dikkenberg.local timed out after
     none of the configured DNS servers responded.
             A warning event occurred.  EventID: 0x000003F6
                Time Generated: 02/26/2013   22:43:11
                Event String:
                Name resolution for the name dikkenberg.local timed out after none o
    f the configured DNS servers responded.
             A warning event occurred.  EventID: 0x0000000C
                Time Generated: 02/26/2013   22:43:13
                Event String:
                Time Provider NtpClient: This machine is configured to use the domai
    n hierarchy to determine its time source, but it is the AD PDC emulator for the
    domain at the root of the forest, so there is no machine above it in the domain
    hierarchy to use as a time source. It is recommended that you either configure a
     reliable time service in the root domain, or manually configure the AD PDC to s
    ynchronize with an external time source. Otherwise, this machine will function a
    s the authoritative time source in the domain hierarchy. If an external time sou
    rce is not configured or used for this computer, you may choose to disable the N
    tpClient.
             A warning event occurred.  EventID: 0x00001796
                Time Generated: 02/26/2013   22:43:50
                Event String:
                Microsoft Windows Server has detected that NTLM authentication is pr
    esently being used between clients and this server. This event occurs once per b
    oot of the server on the first time a client uses NTLM with this server.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 02/26/2013   22:44:12
                Event String:
                Driver Samsung CLP-320 Series required for printer Samsung CLP-320 S
    eries is unknown. Contact the administrator to install the driver before you log
     in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 02/26/2013   22:44:16
                Event String:
                Driver Send to Microsoft OneNote 15 Driver required for printer Verz
    enden naar OneNote 2013 is unknown. Contact the administrator to install the dri
    ver before you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 02/26/2013   22:44:16
                Event String:
                Driver DYMO LabelWriter 400 Turbo required for printer DYMO LabelWri
    ter 400 Turbo is unknown. Contact the administrator to install the driver before
     you log in again.
             An error event occurred.  EventID: 0x00000457
                Time Generated: 02/26/2013   22:44:17
                Event String:
                Driver Microsoft XPS Document Writer required for printer Microsoft
    XPS Document Writer is unknown. Contact the administrator to install the driver
    before you log in again.
             ......................... SRV09 failed test SystemLog
          Starting test: VerifyReferences
             ......................... SRV09 passed test VerifyReferences
       Running partition tests on : ForestDnsZones
          Starting test: CheckSDRefDom
             ......................... ForestDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... ForestDnsZones passed test
             CrossRefValidation
       Running partition tests on : DomainDnsZones
          Starting test: CheckSDRefDom
             ......................... DomainDnsZones passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... DomainDnsZones passed test
             CrossRefValidation
       Running partition tests on : Schema
          Starting test: CheckSDRefDom
             ......................... Schema passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Schema passed test CrossRefValidation
       Running partition tests on : Configuration
          Starting test: CheckSDRefDom
             ......................... Configuration passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... Configuration passed test CrossRefValidation
       Running partition tests on : dikkenberg
          Starting test: CheckSDRefDom
             ......................... dikkenberg passed test CheckSDRefDom
          Starting test: CrossRefValidation
             ......................... dikkenberg passed test CrossRefValidation
       Running enterprise tests on : dikkenberg.local
          Starting test: LocatorCheck
             ......................... dikkenberg.local passed test LocatorCheck
          Starting test: Intersite
             ......................... dikkenberg.local passed test Intersite
    With kind regards, Bas van den Dikkenberg

    Doing primary tests
       Testing server: Bas\SRV01
          Starting test: Advertising
             Warning: DsGetDcName returned information for
             \\SRV09.dikkenberg.local, when we were trying to reach SRV01.
             SERVER IS NOT RESPONDING or IS NOT CONSIDERED SUITABLE.
             ......................... SRV01 failed test Advertising
    "SERVER IS NOT RESPONDING or IS NOT CONSIDERED SUITABLE"
    this error means that the DC is in USN rollback state.
    srv01 is not usn rollback see:
    test from other DC:
    Doing primary tests
       Testing server: Ouders\SRV10
          Starting test: Advertising
             ......................... SRV10 passed test Advertising
          Starting test: FrsEvent
             ......................... SRV10 passed test FrsEvent
    Test from srv09:
    Doing primary tests
       Testing server: Bas\SRV09
          Starting test: Advertising
             ......................... SRV09 passed test Advertising
          Starting test: FrsEvent
             ......................... SRV09 passed test FrsEvent
    With kind regards, Bas van den Dikkenberg

  • Exchange 2013 public folder can not create folder

    hello,
    we have migrate public folders to20102013.
    we can not createfolders / files inpublic folders.Access Rights seems to be
    ok on the control panel
    in Outlook, we can not apply change permissions
    what can i do to fix that ?
    all the public folder have migrate on the secondary mailbox public folder like the technet KB
    Please, help us !
    thank you

    Could you please have a look at below mentioned links ? May be, it will help you to sort-out the issue which you are getting right now while moving public folder :
    http://redmondmag.com/articles/2013/07/15/exchange-2013-cu2.aspx
    http://www.msexchange.org/articles-tutorials/exchange-server-2013/planning-architecture/exchange-2013-preview-public-folders-part1.html
    Carlo

  • Firefox 4 recently downloaded will not create a dial up window. The only way I can get it to work is by establishing a connection via oulook. Firfox then works fine. How do I get Firefox 4 to reqest a dial up window

    Since we downloaded Firefox 4 we have only been able to connect to the internet by using the dial up of outlook. Once connected in this way Firefox 4 works fine.
    We have zone alarm firewall and NOD32 antivirus.

    I have now managed to get AX working on my BT home hub. I took my second non-working unit back to Apple in Solihull and got them to test it in store. They agreed it wasn't working. They then tested another unit in store and that did work so I brought that home. It would be worth you doing the same as I got a 10% discount off my next purchase of anything at Apple for my troubles.
    I set my homehub security to None (from WEP - in homehub manager/advanced/wireless/security), plugged in my AX to homehub using an ethernet cable, then ran Airport utility and after a couple of runs it finally picked it up. I was able to set the configurations I wanted and 24 hours later it is still working. I set my homehub security settings back to WEP as soon as the AX was configured.
    I also installed airport utility on my son's windows laptop and that is now able to print wirelessly as well. So, finally a result.
    I would suggest you take your unit back to where you bought it from and get them to test it. If they offer you another one ask for a Mac genius
    to test it in store for you first. Also ask them to run through the installation procedure with you. Don't forget to ask for something for your troubles:)
    Hope that helps,

  • Install could not create the folder /private/tmp/install teamviewer

    While trying to install teamview I receive the follow message "Installer could not create folder /private/tmp/install teamviewer" does anyone have a solution on what i may be doing wrong.

    While trying to install teamview I receive the follow message "Installer could not create folder /private/tmp/install teamviewer" does anyone have a solution on what i may be doing wrong.
    The Unix /tmp directory (/tmp is a symlink to /private/tmp) is suppose to allow full access to everyone.  It is a place for a process to create temporary files and directories.
    So if you cannot create a file or directory there, I would wonder if it has the correct permissions.  I have:
    Mavericks: drwxrwxrwt  17 root  wheel  - 578 Oct 17 20:40 /private/tmp/
    Lion:          drwxrwxrwt  11 root  wheel  - 374 Oct 17 20:41 /private/tmp/
    Leopard:    drwxrwxrwt   8 root  wheel  - 272 Oct 17 08:46 /private/tmp/
    Where d is for directory.  rwxrwxrwx says user, group, and other all have read, write, and directory search permissions.  t says ONLY the owner of a file may delete that file from the directory.  And since I have the same permissions on 3 different flavors of Mac OS X, that is what I expect you should see.
    etresoft, I do not know why ptcharlotte wants to install TeamViewer.com, but I use it to remotely access a Mac I control when getting across home NAT routers is being a pain. Or in my Mom's case, I use it as a backup, in case one of my relatives decides to be helpful and ends up disabling my ssh port forwarding into my Mom's iMac (I'm 300 miles away, so having TeamViewer.com as a backup can save me a long drive to Mom's, or as always seems to happen, when I'm on vacation a 1,000+ miles away ).

  • Can't create folder when saving docs; can create on desktop but can't move

    This is boggling. When I choose "save" or "save as" for the first time in Word or Excel, and then "create new folder," it asks me to name the folder, and then tells me it can't create it. The error simply says "Could not create folder." So I created a new folder on the desktop, which worked fine, but when I tried to drag it into the folder I wanted it to live in, I got a pop-up that said "You cannot copy some of these items to the destination because their names are too long for the destination."
    1) There is only one item - an empty folder.
    2) The name of the folder is "blah" -- which is in no way too long.
    What the heck is happening? This only started today.

    I just went through your instructions, and the DU window says that it found a bunch of things that need repairing, but won't repair them.
    ??? What on earth is going on? Here's the text that was in the details window:
    Repairing permissions for “Home Base 150 GB”
    Reading permissions database.
    Reading the permissions database can take several minutes.
    Permissions differ on "usr/bin/lppasswd", should be -rwxr-xr-x , they are -rwsr-xr-x .
    Warning: SUID file "usr/bin/lppasswd" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/quota" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/ipcs" has been modified and will not be repaired.
    Warning: SUID file "usr/sbin/traceroute6" has been modified and will not be repaired.
    Warning: SUID file "usr/sbin/vpnd" has been modified and will not be repaired.
    Permissions differ on "usr/bin/rlogin", should be -rwsr-xr-x , they are -r-sr-xr-x .
    Warning: SUID file "usr/bin/rlogin" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/rsh" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/su" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/at" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/atq" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/atrm" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/batch" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/chfn" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/chpass" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/chsh" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/newgrp" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/passwd" has been modified and will not be repaired.
    Permissions differ on "usr/libexec/dirhelper", should be -rwxr-xr-x , they are -r-xr-xr-x .
    Permissions differ on "usr/share/man/man1/atq.1.gz", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "usr/share/man/man1/atrm.1.gz", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "usr/share/man/man1/batch.1.gz", should be -rw-r--r-- , they are lrw-r--r-- .
    Permissions differ on "usr/share/man/man8/halt.8.gz", should be -r--r--r-- , they are lr--r--r-- .
    Warning: SUID file "usr/bin/top" has been modified and will not be repaired.
    Warning: SUID file "Applications/Utilities/Activity Monitor.app/Contents/Resources/pmTool" has been modified and will not be repaired.
    Warning: SUID file "Applications/Utilities/Keychain Access.app/Contents/Resources/kcproxy" has been modified and will not be repaired.
    Permissions repair complete
    Help?

  • Creating pdf file from excel worksheet and save file in a macro created folder.

    Hi I have 3 worksheets and I want to conditionally convert them into a pdf file and than save said file into a folder that the macro will create if not already existing and name it with content of cell A1. So my question is if it is possible to do that with
    the following program?
    Thanks.
    Sub PrintStuff()
    Dim vShts As Variant
    Dim strFileName As String
    vShts = Sheets(1).Range("A1")
    If Not IsNumeric(vShts) Then
    Exit Sub
    Else
    ' Change path and filename as desired
    strFileName = "C:\MyFolder\MySubfolder\MyFile.pdf"
    If strFileName <> "False" Then
    Select Case vShts
    Case 1
    Sheets("Sheet1").Select
    Case 2
    Sheets("Sheet2").Select
    Case 3
    Sheets(Array("Sheet1", "Sheet2")).Select
    End Select
    ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, _
    Filename:=strFileName, _
    OpenAfterPublish:=False
    End If
    End If
    End Sub

    Option Explicit
    Sub PrintStuff()
    Dim Path As String, FileName As String
    Dim ThisSheet As Variant
    Dim MySheets As Variant
    Path = "C:\MyFolder\MySubfolder\"
    FileName = "MyFile.pdf"
    If Not FolderCreate("C:\MyFolder\MySubfolder") Then
    MsgBox "Can not create folder"
    Exit Sub
    End If
    Select Case Range("A1")
    Case 1
    Set MySheets = Sheets("Sheet1")
    Case 2
    Set MySheets = Sheets("Sheet2")
    Case 3
    Set MySheets = Sheets(Array("Sheet1", "Sheet2"))
    Case Else
    MsgBox "Uuups."
    Exit Sub
    End Select
    Set ThisSheet = ActiveSheet
    MySheets.Select
    ActiveSheet.ExportAsFixedFormat xlTypePDF, Path & FileName, OpenAfterPublish:=False
    ThisSheet.Select
    End Sub
    Private Function FolderCreate(ByVal Path As String) As Boolean
    'Creates a complete sub directory structure
    Dim Temp, i As Integer
    On Error GoTo ExitPoint
    If Dir(Path, vbDirectory) = "" Then
    If Right$(Path, 1) = "\" Then Path = Left$(Path, Len(Path) - 1)
    If Left$(Path, 2) = "\\" Then
    i = InStr(3, Path, "\")
    Temp = Split(Mid$(Path, i + 1), "\")
    Temp(0) = Left$(Path, i) & Temp(0)
    Else
    Temp = Split(Path, "\")
    End If
    Path = ""
    For i = 0 To UBound(Temp)
    Path = Path & Temp(i) & "\"
    If Dir(Path, vbDirectory) = "" Then MkDir Path
    Next
    End If
    FolderCreate = True
    ExitPoint:
    End Function

  • Error 1401 when installing cs4 on windows 8

    I'm getting this error when installing Adobe Creative Suite 4
    Error 1603. Error 1401.Could not create key \SOFTWARE\Microsoft\Windows\CurrentVersion\Run.   Verify that you have sufficient access to that key, or contact your support personnel.

    thank you for sending the links, but I already tried all of the solutions in the posted article, before reaching out in this forum.  Does anybody  have any other suggestions?  I'm out of ideas.

  • Searching through notes I added in photoshop

    Because of the fact that I want to start a library of photographs with some notes I added in Photoshop. Is it possible to search through the notes I added in Photoshop in Adobe Lightroom.

    Unfortunately, LR does not read notes created by the Photoshop Notes Tool.
    I did a little investigation, and it appears that these notes are saved in PSDs and TIFFs in a proprietary format, rather than industry standard metadata that could be read by other tools.   The only other applications I found that can read the notes is Acrobat and Reader.   They can read PDFs created by Photoshop and display the embedded notes, and they can export new notes back into Photoshop, again in proprietary format.  I didn't find anyone who had reverse-engineered the format, but perhaps someone else here knows better.
    Going forward, if you want tools other than Photoshop to be able to read your annotations, you're better off using industry-standard metadata fields, such as title, caption, or user comment.

  • Droplets not working :( LR, Photoshop CS4, Windows 7

    Hi all,
    I'm trying to get my computer back to how it was before I installed Windows 7 and there's one thing I can't get working: my sharpen droplets, created in CS4.
    Before they would all work (in LR2 and LR3beta) but now they won't work.
    I've tried this process:
    1.)  Open the Control Panel / User Accounts / Change User Account Control settings
    2.)  Drop the slider bar all the way to the bottom to "Never Notify"
    3.)  Open Photoshop and create your droplets
    4.)  Right-click on each droplet and select "Properties"
    5.)  Click on the "Compatibility" tab
    6.)  Check the "Run this program as an administrator" box
    7.)  Click "Change settings for all users"
    8.)  Check the other "Run this program as an administrator" box
    9.)  "OK" to exit both windows
    10) Go back to the Control Panel / User Accounts / Change User Account Control settings
    11.) Slide the bar back to where you had your security settings (usually at the default setting)
    11) Restart Photoshop
    However, while it will now at least RUN the droplet from within LR (ie. it will boot Photoshop), it now comes up with an error "feather command not available" while trying to run it. I don't even use feather in the actio! All it does is a duplicate layer smart sharpen, convert to profile, a save and a close.
    Does anyone have any idea? It's SO annoying...
    Thanks in advance for any replies.
    Phil

    That did it! Thanks so much! I thought I had tried that already, but it's definitely working now.

Maybe you are looking for

  • What's happening if my Macbook Air beeps about once every minute?

    I just upgraded my Macbook Air to OSX 10.8.1 the other day. Besides that, I diddn't install any new applications. Today, my macbook beeps about once every minute even when I muted it. What is going on?

  • Classification in ADOBE Forms

    As far as my understanding : The usage of ADOBE Forms can be classifies as :- Kindly confirm whether the following are correct or not. 1. Print Forms: This type of usage involves in generation of reports, some confirmation pages and receipts. We can

  • For starting macbook without battery, is there any option in OS??

    Hi Unfortunately i m not able to start my macbook without battery. My question is that is there any option in operating system which i suppose to on for this or it doesn't required any OS interaction!!?? Regards

  • Maximum HD Size 160gig?

    Hi, I have an iMac flatscreen 17"/superdrive (1ghz CPU, 1,25 ghz memory) and just tried to upgrade to a new internal 350gig from the standard 80gig HD. Swap went fine, I partitioned it 300/50 gig with Disk Utility and then tried to install Tiger. But

  • Shut Down and Restart problems

    My Powermac G5 has recently started having issues whilst restarting and shutting down. When asked to do so it quits all apps as usual then the finder quits (or at least the menu bar etc disappears) but before it gets to the blue screen it simply hang