NewInst.cmd not working!

Dear all,
I having this situation whereby i installing a SAP 4.7 ext 2.0 on a NT base OS.
After installing the CI(central instance), i need to run this newinst.cmd so i can continue my installation of DATABASE instance. but when i run it, it prompt me that the " 'findstr' is not recognised as an internal or external command, operable program or batch file"
what could be possibly causing this?
I run this newinst.cmd a few times before and it work fine for me until i uninstalled the oracle software(not database instance) recently.
as for temporary solution, i rename the folder C:\Program Files\sapinst to sapinst.bak and run the sapinst.exe again to generate new sapinst folder.
Will there be any impact to the system if i do so?
Kindly help to solve my problem, thanks
regards,
Jerry

Hi Jerry,
"findstr" is a windows command to find pieces of data on strings (or something like that) and seems to be missing from your os or maybe the path to this command is not set in the env variables.
Do a search for this file on your OS and add the path to the env variables so you can call it from any location. Otherwise you'll need a fresh OS installation.
Regards
Juan

Similar Messages

  • Class.newInstance() does not work the same way in Java 5.0

    We upgraded our development environment to RAD 7, and I am experiencing an interesting problem with the code below which worked perfectly with the previous version.
    Class cloneClass = fromObject.getClass();
    Object toObject = null;
    toObject = cloneClass.newInstance();
    I am using an open source hashtable called OrderedHashtable that uses the key-value lookup capabilities of a hashtable and order preserving capablities of a vector. It stores the objects in a hashtable and stores the keys in a vector.
    fromObject in the code above is a key (String) that I retrieve from the OrderedHashtable and clone it using the code above. But with java 1.5 , the cloneClass.newInstance of this String object returns an empty string.
    I guess there is a work around where I can check if the cloneClass is an Instance of String and just do fromObject.toString(), but I was curious to know if there was a change in the way class.newInstance() works in Java 1.5

    >
    fromObject in the code above is a key (String) that I retrieve from the OrderedHashtable and clone it using the code above.No. How could that code possibly clone a String? Where are you telling it what the new String's contents should be?
    (HINT: Nowhere.)
    I guess there is a work around where I can check if the cloneClass is an Instance of String and just do fromObject.toString(), but I was curious to know if there was a change in the way class.newInstance() works in Java 1.5No, it has not changed.

  • Netsh cmd not working

    Hello,
    Am running a Netsh cmd on windows server 2008 r2 64
    i use the elevated cmd prompt and power shell as well.
    C:\Windows>netsh trace start scenario=netconnection capture=yes maxsize=512mb tracefile=c:\ping.etl
    but error : The following command was not found: trace start scenario=netconnection capture=yes maxsize=512mb tracefile=c:\ping.etl.
    I have followed the instructions given here: http://blogs.technet.com/b/yongrhee/archive/2012/12/01/network-tracing-packet-sniffing-built-in-to-windows-server-2008-r2-and-windows-server-2012.aspx
    Could you please help me??/
    regards,
    Dharanesh,

    Hey Jeff, This is my system.
    OS Name:                   Microsoft® Windows Server® 2008 Enterprise
    OS Version:                6.0.6002 Service Pack 2 Build 6002
    OS Manufacturer:           Microsoft Corporation
    It works in some servers and its strange i cannot just run it on few servers.

  • Runtime.getRuntime().exec(cmd) not working

    I have created binary scrip to parse file from one format to another format and the file parser is available on Linux path and working fine when calling from command prompt but while calling this program from jsf or any any java form bean it adds some special charaters with program and throws IOException as belows
    calling command
    String[]     cmd={"delimiter",inputFile.toString(),outputFile.toString()};
    Process     p=Runtime.getRuntime().exec(cmd);
    it gives following error.
    java.io.IOException: delimiter@! : not found
    while calling this from jaav main application working fine.
    any suggestion would be appriciated.
    Cheers,
    dharmendra

    Thanks.
    I printed out whatever values are being passed and it is printing the right values on console and in log file and I also tried this command in stand alone application program an working fine. but when I call it from jsf form bean it adds ^@ at the end of first parameter and says ;
    IOException : delimiter^@ : not found
    i actually created the same copy as delimiter^@ and put it in same path directory with 777 mode.
    and now its working fine. but I did not know the reason why it change the name of first argument.
    Thanks,

  • ExportSecurity.cmd not working

    Hi all,
    I am using ExportSecurity.cmd utility version 11.1.2.3. It is giving me result as Loaded Version of Essbase RTC:0xb1230. I cannot see the Secfile.txt being creates.
    Do I need to call any batch file before calling this? It was working fine in 11.1.2.2
    Thanks for your help in advance

    I assume that you give the correct parameters as explained here Oracle Hyperion Planning, Fusion Edition Administrator's Guide
    Try running it with /TO_FILE= switch and see whether it generates the file or not.
    Regards
    Celvin
    http://www.orahyplabs.com

  • ClassType.newInstance() does not works.

    I tried to use ClassType.newInstance() with user defined types but doesn't works. It seems that instantiates only Sun Classes (sun.*, java.*). Can anyone give me an hint for to overcome this logic?
    Thanx.

    The debugee code is
    package P;
    public class A
         public A()
         public static void main( String[] args ) throws Exception
              for ( int i=0; i<16384; ++i )
                   Thread.sleep(2000);
                   System.out.println( "main: " + i );
    The snippet of debugger code is
         public void init( String classname )
              try
                   List allThreads = this.allThreads();
                   VirtualMachine vm = this.vm();
                   ThreadReference threadReference = null;
                   for ( Iterator i = allThreads.iterator(); i.hasNext(); )
                        threadReference = (ThreadReference) i.next();
                        // *todo: scegliere in maniera pi? oculata il thread cui rubare i cicli (forma di "computazione parassita")
                        // il thread della GC?               
                        if ( threadReference.name().equals( "main" ) )
                             break;
                   assert threadReference != null;
                   System.out.println( "" + threadReference );
                   // cerca la classe da istanziare
                   List instance_class_singleton = vm.classesByName( classname );
                   System.out.println( classname + "" + instance_class_singleton.size() );
    //               assert instance_class_singleton.size() == 1;
                   ClassType instance_class = (ClassType) instance_class_singleton.get( 0 );
                   System.out.println( "" + instance_class );
                   Method instance_constructor = instance_class.concreteMethodByName(  "<init>", "()V" );
                   System.out.println( "" + instance_constructor );
                   // new
                   ObjectReference instance = (ObjectReference) instance_class.newInstance( threadReference, instance_constructor, new ArrayList(), 0 );
                   System.out.println( "" + instance );
              catch( Exception e ) { System.out.println( ""+e ); }
    The init() method works with a class of the Sun (sun.*, java.*) as argument, but jams with the class "P.A".
    No exception/traceback. I'm using Mac OS X.
    Thanks

  • Powershell Script Send-zip not working when running in cmd

    I found there is powershell send-zip script available in technet.  I tested it and found that it works when the script is running under powershell env, but when it is calling in cmd env, I can see the zip file, but there is nothing in it.  If
    I add the "-noexit" switch it runs normally.  Anyone have ideas what might be happening?
    The orig codes is as following:
    function global:SEND-ZIP ($zipfilename, $filename) { 
    # The $zipHeader variable contains all the data that needs to sit on the top of the 
    # Binary file for a standard .ZIP file
    $zipHeader=[char]80 + [char]75 + [char]5 + [char]6 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0 + [char]0
    # Check to see if the Zip file exists, if not create a blank one
    If ( (TEST-PATH $zipfilename) -eq $FALSE ) { Add-Content $zipfilename -value $zipHeader }
    # Create an instance to Windows Explorer's Shell comObject
    $ExplorerShell=NEW-OBJECT -comobject 'Shell.Application'
    # Send whatever file / Folder is specified in $filename to the Zipped folder $zipfilename
    $SendToZip=$ExplorerShell.Namespace($zipfilename.tostring()).CopyHere($filename.ToString())
    SEND-ZIP C:\abc\a.ZIP C:\a\a.bak

    I've had the same problem with similar code found on another web site.
    The reason the zip file ends up being empty is that the temporary $ExplorerShell object you created is deleted when the send-zip function returns,
    and any incomplete copy operation that may still be ongoing at that time is aborted. (The copy operation is asynchronous, and continues after the CopyHere() function returns.)
    To work around this, you need to add a delay loop before you return, waiting for the copied object to appear in the zip.
    (Note that adding a fixed delay, like I've seen on other web sites, does not work: Small files appear almost immediately, whereas large file or worse still large subdirectory trees can take a long time to appear.)
    Try changing the end of your routine to something like...
    # Create an instance to Windows Explorer's Shell comObject 
    $ExplorerShell=NEW-OBJECT -comobject 'Shell.Application' 
    # Open the zip file object
    $zipFile = $ExplorerShell.Namespace($zipfilename.tostring())
    # Count how many objects were in the zip file initially
    $count = $zipFile.Items().Count
    # Send whatever file / Folder is specified in $filename to the Zipped folder $zipfilename 
    $SendToZip=$zipFile.CopyHere($filename.ToString())
    # Wait until the file / folder appears in the zip file
    $count += 1 # We expect one more object to be there eventually
    while ($zipFile.Items().Count -lt $count) {
        Write-Debug "$filename not in the zip file yet. Sleeping 100ms"
        Start-Sleep -milliseconds 100
    # Return deletes the $zipFile object, and aborts incomplete copy operations.

  • Cmd-TAB is not working in 10.9

    Hi,
    since Mavericks the application switcher is not working correct. When I switch to an other application using cmd-TAB the menue of the other application is shown, but no windows of this application will be shown. In older versions of OS X the app switching via cmd-TAB was no problem.
    Is ist possible to bring back the old behavior of the shortcut cmd-TAB?
    Gerhard

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve your problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to gather information about the state of your computer. That information goes nowhere unless you choose to share it on this page. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them.
    Here's a summary of what you need to do: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a couple of minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking  anywhere in the line. The whole line will highlight, though you may not see all of it in your browser, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s:\n\n%s\n'; Fr='\nRAM details:\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -q XML\|exec && echo $f; done; }; Pc () { o=`grep -v '^ *#' "$2"`; Pm "$1"; }; Pm () { [[ "$o" ]] && o=`sed '/^ *$/d; s/^ */   /' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id | grep -qw '80(admin)'; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed '8!d;s/^ *//'; o=`SP Hardware | awk '/Mem/{print $2}'`; o=$((o<4?o:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d; /[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]||0[^2]8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; o=`SP USB | sed -n '1d; /:$/{s/ *:$//;x;s/\n//p;}; /V.*[(]/{s/^[^(]*/ /;H;}; /Apple/{s/.//g;h;}'`; Pm "USB"; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; d=(/ ""); D=(System User); for i in 0 1; do o=`cd ${d[$i]}L*/L*/Dia* && ls | awk -F_ '!/ag$/{$NF=a[split($NF,a,".")]; print}' | tail`; Pm "${D[$i]} diagnostics"; done; o=`syslog -F bsd -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|n Cause: -|NVDA\(|pagin|SATA W|ssert|timed? ?o' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); o=${s[2]}%; Ps "CPU usage by process \"$s\" with UID ${s[1]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); s[2]=${s[2]%[+-]}; o=$((s[2]>=25000?s[2]:0)); Ps "Mach ports used by process \"$s\" with UID ${s[1]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | sed 1d | awk '!/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|post[fg]|x)/{print $3}'`; Pm "Extrinsic system jobs"; o=`launchctl list | sed 1d | awk '!/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | grep -v com\.apple\.CSConfig | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/Star*; do M; done`; Pm "Startup items"; o=`find -L /S*/L*/E* {/,}L*/{A*d,Compon,Ex,In,Keyb,Mail/B,P*P,Qu*T,Scripti,Servi,Spo}* -type d -name Contents -prune | while read d; do ID=$($PB\ :CFBundleIdentifier "$d/Info.plist") || ID="No bundle ID"; [[ "$ID" =~ ^com\.apple\.[^x]|Accusys|ArcMSR|ATTO|HDPro|HighPoint|driver\.stex|hp-fax|\.hpio|JMicron|microsoft\.MDI|print|SoftRAID ]] || printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find -L /u*/{,*/}lib -type f | while read f; do file -b "$f" | grep -qw shared && ! codesign -v "$f" && echo $f; done`; Pm "Unsigned shared libraries"; o=`launchctl getenv DYLD_INSERT_LIBRARIES`; Pm "Inserted libraries"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; Ps "DNS"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; Pc "hosts" <(grep -v 'host *$' /etc/hosts); Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed 's/\..*$//;s/-[1-9]$//'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`SP Fonts | egrep "Valid: N|Duplicate: Y" | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    When you launch Terminal, a text window will open with a line already in it, ending either in a dollar sign ($) or a percent sign (%). If you get the percent sign, enter
    exec sh
    in the window and press return. You should then get a new line ending in a dollar sign.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know your password, or if you prefer not to enter it, just press return three times at the password prompt.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that takes administrator privileges.
    The test may take up to a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line "[Process completed]" to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report your results. No harm will be done.
    8. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If it happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of Apple Support Communities ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • Cmd+Shift+L shortcut (shortcut for google search) not working in 5.1

    Cmd+Shift+L shortcut (shortcut for google search) is not working after I upgraded Safari to  5.1

    Has anybody figured a way of restoring this?
    Not broken here, still working fine as always. Have you tried repairing permissions or creating a new user account and seeing if the problem persists there? It's an issue with your install, as a guess. Working fine on all the Mac's around here with Safari 4.04

  • Client_host('cmd  edit c:\temp\file_print.txt'); not working with Sun JRE6

    Hi,
    I am working on Oracle forms10g ( 10.1.2.0) with Sun JRE6 (Using JRE version 1.6.0_31-b05) which is working fine. the only problem is, when I use edit command, its not working nor show any error. Command I am using (to display the text file in command window) - client_host('cmd edit c:\temp\file_print.txt'); . the same command working fine if I switch to JInitiator (1.3).
    help would be greatly appreciated.
    Thank you.
    Alok

    In the [webutil] section of the formsweb.cfg, did you change the baseHTMLjinitiator to point to webutiljpi.htm?
    not working nor show any error. Not all errors will be reported through the Forms UI. For java related errors you have to look at the Java Console. Please check the Java Console and post any errors listed there.
    the same command working fine if I switch to JInitiator (1.3).This tells me the problem is most likely a configuration issue. Please list what steps you took to congifure your system to use the JRE over the default Oracle Jinitiator.
    Craig...

  • CMD+ shortcuts not working in Dreamweaver CS3

    I'm have a very strange issue with CMD+ keyboard shortcuts
    not working in Dreamweaver CS3 on OSX 10.5. These actions are
    working from the menus (i.e., copy, cut, paste, etc.). CMD+
    shortcuts work in other CS3 apps. I've searched this forum and
    googled up and down and found some references to issues like this
    with Dreamweaver 8, but nothing for CS3.
    Has anyone experienced this problem? I'm completely stumped.
    Lawrence

    My concern wasn't with the navbar, but thanks for the headsup.
    The problem is that the link in the upper left hand corner, Suzie's Story, is a rollover image but it does not reveal the other image when the cursor goes over it.
                            <div id="topTabs1">
       <div align="center"><a href="http://www.google.com" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('suzie','','Images/Suzie's Story Tab_light.jpg',1)"><img src="Images/Suzie's Story Tab_black.jpg" alt="suzie" name="suzie" width="75" height="45" border="0" id="suzie" /></a></div>
             </div>
    #topTabs1 {
    width: 75px;
    height: 45px;
    float: left;
    background-color: #ffffff;
    padding-left: 0px;
    padding-right: 0px

  • CMD+ shortcut not working on Czech keyboard

    Hello,
    I have this problem. CMD+ and some other shortcuts are not working or are working weird on Czech keyboard. For example it works in Preview (sometimes) but not in Safari.
    On Czech keyboard there is + sign on the key with number 1. (normal press = "+" shift and press = "1"). When I activated Keyboard Viewer in could see that when I press CMD the "+" key turns to "1". So then its impossible to press CMD+. The weird thing is that in Preview it sometimes works like CMD+ and sometimes like CMD and 1 (I really don't know why, in both cases i have a pdf file opened).
    Then I tried setting CMD and 1 as a shortcut for Zoom In instead of CMD+. Here is another weird thing. When I pressed CMD+ the shortcut was set to CMD+ with no problem, but when I want to use it it always acts as CMD and 1.
    Can somebody explain me why this all works weird like that or maybe can somebody look into it and fix it somehow?
    Thanks
    Regards
    Milan

    This could be lots of things.  I'd say it was some type of system corruption.
    First, thing is to define a new user  & see if the problem exits there. 
    If not, -- good news -- it is probably some finder preference.  You need to delete the finder preferences.
    Otherwise, the corruption is somewhere else.
    the  swag stuff…
    You may want to run these "standard" fixes if the problem persists.
    Check the amount of free space on your harddrive.  You should have a several gigs free.
    You should run disk utility
    a) verify the disk
    b) update your permissions.
    Try a safe boot.
    Shutdown your machine.  Hold down the shift key.  Poweron.  Wait awhile Wait awhile while you harddrive is being checked.
    http://support.apple.com/kb/ht1455
    You may want to run applejack to clean up your machine.
    http://applejack.sourceforge.net/

  • Finder keyboard shortcuts not working (cmd-c, cmd-v, cmd-a)

    All of a sudden, the edit menu cmd functions are not working, such as cmd-v, cmd-c, cmd-a.
    Cmd-p still works.
    Using a bluetooth keyboard, all the commands work.
    But the built-in keyboard will not work for these functions, even under a newly created user account.
    Thoughts?

    Have you tried searching for Cut in the Keyboard Shortcuts dialog? Perhaps is somehow got assigned to a new command.
    you may also want to try deleting your preferences. Hold down Option+Shift when launching Premiere.
    Peter Garaway
    Adobe
    Premiere Pro

  • Space Bar Hand Move & CMD-Space Zoom Not Working-CS5

    Today, all of a sudden, two of my most used functions—holding down the space bar to move the image around and holding down CMD-space bar to zoom—just up and quit on me (I do like the "Scrubby" but it took a little getting used to. It's very touch screen-esque).
    I did all of the normal trouble shooting such as deleting the prefs, relaunching, restarting, etc. Nothing. The functions work fine in the other CS5 programs.
    Anybody else come across this? I checked through all of the prefs thinking that perhaps I accidentally changed something but I couldn't find anything. If all else fails, I'll do an uninstall/reinstall but only as a last resort.
    I did notice that Adobe finally fixed the Distort (in Full Screen Mode) bug that was killing me in CS4.
    Thanks for any help.

    I don't believe it but I think that I finally found the culprit: hulu (the desktop app, not through a browser).
    To make sure, I rebooted, launched PS, Flash, and InDesign, and then fired up every app that I could think of, one by one, testing each time, leaving hulu for last. Sure enough, it was not until I got to hulu that the space bar hand/zpom stopped working. And then I went one by one, quitting each app, testing each time, again leaving hulu till the last. Sure enough again, the space bar continued not working until I quit hulu, the very last app that I had running (aside from CS5 and system processes).
    Please, please do not tell me that there is a conflict between CS5 and hulu's utilization of Flash! That would just make Mad Dog Jobs' a happy camper. (I am a big supporter of Flash on the iPad).
    What a relief. Except how am I now going to watch my TV shows while working???
    In regards to browser conflicts, I have had none with Safari, Firefox, or Chrome.
    Adobe, I hope that this information helps. Let me know if you need any info screen capped.

  • Object Lock Shortcut (Cmd 2) - Not working

    I can use the Object Lock shortcut on my Mac at home but for some reason that I can't solve, it does not work on my office Mac.
    Are there any triggers or settings that I can toggle to allow me to use this extremely helpful shortcut???
    Thanks

    There are a couple of places to look as to why your CMD 2 is not working
    Illustrator  >> Edit >> Keyboard Shortcuts
    Yours should look like mine.
    Also look at your system preferences >> Keyboard, and you want to look at all of these to make sure CMD 2 has not been used for nay of the commands here.

Maybe you are looking for