Bat file shortcut can't be pinned to taskbar

After fighting a running battle with the Truvero virus* I've finally give up. I have notice that it append "Search.net"
to all my browser shortcuts but it leaves the exe file alone, so I dont get that Bing search Engine and Truvero on start up. 
So I created a bat file that runs the chrome.exe file and saved it to the desktop. It works great but when i try to pin it to the
taskbar I can't. Same for a shortcut to the bat file. 
Why can't I do this? Is there a script that Win 7 recognizes that will pin to the taskbar?
* I know Truvero is not really a virus, but it's just as hard to get rid of.
Thanks,
P3aul

Hi,
How is the current situation? I suggest you use your anti-virus to scan the whole computer.
Is Truvero a file or something else?
According to your description, it seems that your Internet Explorer can't work fine.
If I am right, please let me know what's the symptoms when you attempt to launch Internet Explorer.
If your computer works fine before, the easier way to resolve the issue is to use system restore to roll back to a previous time when everything worked fine.
Karen Hu
TechNet Community Support

Similar Messages

  • How to create a database in 11g via a bat file

    Hi
    I have had a look around the internet, but I am unable to locate a good example of how to create a database/instance in 11g via a bat file. Can anyone advise me how to do this and what other things do I need to make it work via a bat file?
    Thanks

    user633278 wrote:
    Let me say this - I have taken over from someone who has left a development database which developers want to use asap in a poor state and no documentation. It is only when I started looking at the database that I discovered these problems. At the same time a developer wants a script which they he run to drop and recreate a database - it only needs to be minimal - small database, a few tables and stored procedures.OUI uses RMAN restore to produce starter DB & does not CREATE DATABASE from scratch.
    It takes hours to run CATPROC & such after 100% totally empty results from CREATE DATABASE command

  • How to run sql query in bat file in task schedular at every 10 seconds

    This is my sql script :
    DECLARE @countRows INT,
    @currDate DATE,
    @checkForTasks INT,
    @created_by_id INT,
    @gst_ID int;
    SET @currDate = Getdate()
    SET @countRows = (SELECT Count(*)
    FROM [dbo].[sd_gst_effective_table]
    WHERE isapplied = 0)
    IF @countRows > 0
    -- Check for those GST''s who are not applied yet : if they are greater than 0 then perform next task
    BEGIN
    SET @checkForTasks = (SELECT Count(*)
    -- Check is current date equals to task date or not
    FROM [dbo].[sd_gst_effective_table]
    WHERE effect_date = @currDate AND isapplied = 0)
    IF @checkForTasks > 0
    -- If current date = task date then perform this task
    BEGIN
    SET @created_by_id = (SELECT TOP 1 createdby FROM [dbo].[sd_gst_effective_table] WHERE effect_date = @currDate AND isapplied = 0)
    SET @gst_ID = (SELECT gst_id FROM [dbo].[sd_gst_effective_table] WHERE effect_date = @currDate AND isapplied = 0)
    -- STEP 1 :: InActivate the existing GST according to createdbyID
    UPDATE sd_gst_rate
    SET isactive = 0,
    inactivedate = Getdate()
    WHERE isactive = 1
    AND createdby = @created_by_id
    -- STEP 2 :: Activate the New GST according to implementation date and gstID
    UPDATE sd_gst_rate
    SET isactive = 1,
    activedate = Getdate()
    WHERE id = @gst_ID
    -- STEP 3 :: Inactivate the applied GST from sd_gst_effective_table
    UPDATE [dbo].[sd_gst_effective_table] SET isApplied = 1 WHERE gst_id = @gst_ID
    END
    END
    DECLARE @Text AS VARCHAR(100)
    DECLARE @Cmd AS VARCHAR(100)
    DECLARE @value nvarchar(1000);
    SET @value = (SELECT CONVERT(TIME,GETDATE()) AS HourMinuteSeconds);
    SET @Text = 'File Writed ' + @value
    SET @Cmd ='echo ' + @Text + ' > E:\AppTextFile.txt'
    EXECUTE Master.dbo.xp_CmdShell @Cmd
    This is resided in videos folder of windows , i have created a task schedular in windows 8.1 to run daily at every 10 seconds , but it is not working ... Please tell me how to deal with it.
    Please note : This sql query is running perfectly in sql server. Query have no errors. Please check whats wrong with my time schedular. I just want my schedular to run every 10 seconds regardless of date.

    Hi Emad,
    Is your script in a ".sql" file? May I know how you configure the schedule task action?
    Since you didn't mention how you configure the schedule task, can you confirm you have followed the below step correctly?
    Save your script in a ".sql" file.
    Create a ".bat" file and call the sql file above inside with
    sqlcmd.exe, you can reference
    here.
    Configure a schedule task to run the ".bat" file in a certain interval.
    Have you tried to run the script in you bat file in a standalone commandline window? Please post the script in your bat file, It can help to diagnose the issue.
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • Bat file for running scheduled jobs

    Hi
    I am not entirely sure whether this is the correct forum to post this question, so apologies if I have posted this question in the wrong place.
    Anyhow, I would like to know how to create two automated bat file scripts that will execute a PL/SQL package that will tell my Oracle 10g R2 database to run a scheduled job. Equally, I need another bat file to tell it to drop the scheduled job.
    I already have a PL/SQL package that creates a schedule job using dbms_scheduler, and I can execute the scheduled job by going into SQL Plus running the execute command against the package. It is this latter bit, the execute part that I want to automate into bat file.
    Can someone show me how to do this?

    I'm in complete agreement with Hans. Oracle has two facilities DBMS_JOB and DBMS_SCHEDULER neither of which benefits in any way be being called by a batch file.
    What is your version number (all of it) and why are you considering this idea?

  • 11g - how to clear cache by bat file

    hi, experts,
    in 10g, it is able to clear the cache using bat file.
    by bat file, I can set a windows schedule to clear the cache
    for 11g, how to do this?

    Please look into these two blog posts to create the batch file you need:
    http://shivabizint.wordpress.com/2010/12/22/purge-bi-server-cache-in-obiee11g/
    http://www.skurabigroup.com/blog/?p=659
    Hope this helps.
    Thanks,
    -Amith.

  • Can anyone help me rewrite a .bat file to work on my iMac?

    I need some help writing these .bat files so i can use them on my mac
    @echo off
    @title Dump
    set CLASSPATH=.;dist\Lithium.jar;dist\mina-core.jar;dist\slf4j-api.jar;dist\slf4j-j dk14.jar;dist\mysql-connector-java-bin.jar
    java -server -Dnet.sf.odinms.wzpath=wz/ tools.wztosql.DumpItems
    pause
    //new file
    @echo off
    @title Dump
    set CLASSPATH=.;dist\Lithium.jar;dist\mina-core.jar;dist\slf4j-api.jar;dist\slf4j-j dk14.jar;dist\mysql-connector-java-bin.jar;dist\bcprov-jdk16-145.jar
    java -server -Dnet.sf.odinms.wzpath=wz/ tools.wztosql.DumpMobSkills
    pause
    //new file
    @echo off
    @title Dump
    set CLASSPATH=.;dist\Lithium.jar;dist\mina-core.jar;dist\slf4j-api.jar;dist\slf4j-j dk14.jar;dist\mysql-connector-java-bin.jar;dist\bcprov-jdk16-145.jar
    java -server -Dnet.sf.odinms.wzpath=wz/ tools.wztosql.DumpQuests
    pause
    //new file
    @echo off
    @title Lithium Server Console
    set CLASSPATH=.;dist\Lithium.jar;dist\mina-core.jar;dist\slf4j-api.jar;dist\slf4j-j dk14.jar;dist\mysql-connector-java-bin.jar
    java -server -Dnet.sf.odinms.wzpath=wz/ server.Start
    pause
    Thank you very much, im sorry if i seem very ignorant by asking this, i just dont know applescript and im trying to get this done as fast as possible.

    Try the developer forums:
    https://discussions.apple.com/community/developer_forums

  • How can I execute a  .bat  file from inside a java application

    I have a .bat file which contains an executable file(.exe) and some input and output file names. What commands can I use to execute this bat file from my java application.

    After raeding tkleisas' reply; i am trying to invoke another application (which can be invoked from the command line) by using a batch file and trying Runtime.exec for executing a batch file.
    My current code is:
    Runtime runtime = Runtime.getRuntime();
    Process trialProcess;
    trialProcess = runtime.exec("cmd.exe /C start C:\\guns.bat /B");
    And my guns.bat looks like:
    cd C:\CALPUFF
    echo trial
    start calpuff.exe CALPUFF.INP
    This is not working for me and i get the following in the error stream of the trialProcess:
    Error :
    The system cannot execute the specified program.
    Process finished with exit code 1
    Has anyone come across something like this and know what's wrong with this one??
    thnx

  • Can not run business rule with bat file

    Hi all,
    I've problem with using *.bat file to run business rule. My Essbase version is 11.1.1.3 and the syntax within
    *.bat is simple, but I always got the Usage message and can not execute the rule.
    The error result as blow(I already execute the syntax in command panel directly):
    C:\Hyperion\products\Essbase\eas\console\bin>CmdLnLauncher -SWILSON -Usynadmin -P111111 -r0004_COPYDATA
    Usage: CmdLineLauncher [-p:<passwordFile>] -Sservername -Uusername [-rBusiness R
    ule Name | -sSequence Name] [-fRun Time Prompts file] [-validate]
    My *.bat file content as below:
    cd c:\Hyperion\products\Essbase\eas\console\bin
    call CmdLnLauncher -SWILSON -Usynadmin -P1111111 -r0004_COPYDATA
    Is there something wrong? If anyone know about this problem, please help,thanks!!

    Hi,
    Here is a brief overview on how to use the command line launcher.
    You can create a file and put the following information into it filling in the servername,app name and db name
    ExecDB::"Planning/servername/appname/dbname"
    Save it as .xml file (don’t think it has to be an xml, could be .txt), so something like connect.xml
    Then when you run your command line do exactly like before Cmdlnlauncher -Sservername -Uusername -p:password.txt -rrule -fconnect.xml
    If you have variables in your rule you can
    In EAS right click over the rule and select "Automate Launch Variables", fill in the details and then save it is as an xml.
    You just need to reference the xml in the batch script as described above using the -f parameter, for sequences remove -rrule and use –sSequence
    update password.txt to the name of your password file.
    Cheers
    John
    http://john-goodwin.blogspot.com/
    Edited by: JohnGoodwin on Apr 30, 2010 8:17 AM

  • Why can´t i change language inside PsCC from Danish to English? Instead of going into Program:Adobe. Locales: rename file from .tw10428.dat into tw10428.bat file??

    Why can´t i change language inside PsCC from Danish to English? Instead of going into Program:Adobe. Locales: rename file from .tw10428.dat into tw10428.bat file??

    Creative Cloud Help / Adjust the install language | Creative Cloud applications | CCM -
    http://helpx.adobe.com/creative-cloud/kb/change-installed-language.html

  • I have added photos to a portfolio website I'm building and a lot of them look VERY grainy when you click on them. They are nice clean large files and can print bat high res way over 16" x 20" so whats happened to them in iWeb?

    I have added photos to a portfolio website I'm building and a lot of them look VERY grainy when you click on them. They are nice clean large files and can print bat high res way over 16" x 20" so whats happened to them in iWeb?

    When you are dealing with websites, image file size is a trade off between quality and download speed. There's not a lot of point to having high quality images if they take too long to download in the browser.
    Nowadays we also have to consider the device that the end user is viewing the images on. An image that is optimized for viewing on a large screen is total overkill and unsuitable for those using mobile devices.
    Really we should be supplying different versions of media files for different devices using @media rules in the stylesheet but this is rather outside of the scope of iWeb. If you use the built in image optimizer and the iWeb Photo template with slideshow, the application will optimize the images according to the way in which you set this function in preferences and the slideshow size will be automatically reduced for those viewing it on smaller screens.
    If you want to give your viewers the opportunity to view large, high quality images, you can supply them as a download.

  • Using FDM can we execute the .bat file

    Hi,
    I am trying to automate the load process, ie I want to load data through FDM into essbase and once the data is loaded I want to run a bat file through which in the essbase the agg scripts will run.
    So Can I write it in the Aftload a script to call the .bat file which has the agg scripts in it.
    Is it possible to do?
    Can anyone help me giving idea to me on this?
    Thanks,

    If i may, i would like some help on this subject.
    i tried both methods and they both work from the WB. but as soon as i tried to use them on the web, nothing happens. i tried to write that in an event or as a stand alone task in task flow but no results
    API.DataWindow.Utilities.mShellAndWait CStr("C:\Hyperion\products\FinancialDataQuality\SharedComponents\export.bat"), 0
    this bat file works as a cmd, a bat in win explorer or in the WB, but i can not seem to find a way to include it in a script that i can use from the web. i tried batch, Importaction,...any suggestion?

  • How can I restore the "All my files" shortcut in the finder window after deleting it

    Hello all!
    How can I restore the "All my files" shortcut in the finder window after deleting it?

    Finder > Preferences > Sidebar
    Put a checkmark in the box beside "All My Files".

  • How can I use an java based app that starts via an inf or bat file?

    I have java exe application that is started using a .bat file and a java exe application that is started using an inf file. Both the .bat and inf prevent the respective application from kicking off.  Is there a way to convert these file types so that they execute on  my MacBook?

    I didn't expect you to have your customer run the command. I would expect you to create the executable and install it. However, there wouldn't be any difference in what you are creating and the .jar file. Either way it is a faceless icon. For that matter, it is no different than a batch file on Windows. I'm not sure what they wouldn't understand with, "copy the Vocab.jar file to wherever you want and double-click it to run the program." In addition, you probably ought to point out that Java is not installed on Mac OS X Lion (10.7.x) and when they double-click the jar file (or whatever you send them), the system will ask if they want to install Java.
    What you really need to do is package up the app inside a Mac application package and provide the user with the application on a .dmg (disk image). Take a look here: http://developer.apple.com/library/mac/#documentation/Java/Conceptual/Jar_Bundle r/Introduction/Introduction.html#//apple_ref/doc/uid/TP40000884
    I also found this which uses ANT to create the bundle: http://informagen.com/JarBundler/

  • Can only launch sqlDev 3.0 via .bat file

    I just downloaded 3.0 and extracted to a new folder. (winXP) The older version worked fine. Whenever I launch sqldeveloper.exe, I get " UNable to create an instance of the Java Virtual Machine"
    However, I am able to successfully launch when executing the sqldeveloper.bat file. AM I missing a configuration step?

    Make sure you're pointing to a 1.6 JDK in \sqldeveloper\bin\sqldeveloper.conf or delete the entry to get prompted to browse for it on next startup:
    SetJavaHome C:\Archivos de programa\Java\jdk1.6.0_16Hope that helps,
    K.

  • SQL developer bat file not found?

    (possibly this should be posted in another place)
    I installed the new Oracle 11.2.0.1 64 bit in windows 2008 sp2 64 bit, the sqldeveloper doesn't work,
    D:\app\serv_hyperion\product\11.2.0\dbhome_1\SQLDEVELOPER\SQLDEVELOPER\BIN\sqldeveloper.bat
    Actually, I cannot find this bat file, this is strange. And I have to refer to the sqldeveloper.exe file, and it looks for a java, and I refer it to a jdk or jre Java, but stilll error happens. what happens? why i cannot find the sqldeveloper.bat file?
    when I refer the sqldeveloper.exe to JRE java.exe, the error is: J2SE SDK is not found. If I refer the sqldeveloper to JDK java.exe, the error is Java Virtual Machine is not available. I have 2 issues: the first probelem is I cannot find the sqldeveloper.bat that should exist, the 2nd problem is I cannot start the sqldeveloper.exe no matter if I use JRE or JDK, thanks!

    Hello,
    Sincerely, I always install SQL Developer separately on a directory whose name specify the Release. For instance, sqldeveloper-2.1.1.64.45.
    Because Oracle delivers new release every 2 or 3 months, and it's recommended to do not modifying Oracle Server installation without using OUI.
    Then, you can locate the sqldeveloper.exe on this directory and create a shortcut to it.
    Afterwards, when you want to install a later release (sqldeveloper x.y.z.aa.bb) you may create another directory for that and import straigthly all the connexions you already defined from the former installation.
    By exporting / importing connexions you won't have to recreate them.
    By that way, you may have several releases of sqldeveloper and compare them. Sometimes there're differences between them.
    For instance, the first release of SQL Developer (1.1) allows connexions to Oracle 8i database while it's not allowed in 2.1.
    Hope this help.
    Best regards,
    Jean-Valentin

Maybe you are looking for

  • Corrupt file problems installing latest Flash on Windows Vista - help please?!

    When trying to install the latest Flash on my Windows Vista (I'm not great with computers so more than the internet system I use I'm not sure what other details are necessary), I keep getting the message "install_flashplayer11x32_mssd_aih.exe - Corru

  • MSP Document Download

    Hi,   I am creating a BAPI in which I am calling MSP download function module.   Then I called GUI_DOWNLOAD function module to download the MSP data.   I am getting sy-subrc = 0 and the file got downloaded but was blank. Guess mapping issue. Please h

  • Java apps refuse to accept double byte characters

    Java apps refuse to accept double byte characters In my user account, all java apps now refuse to accept double-byte characters (Chinese, Japanese, etc). I have another clean account, and that one works fine. Things I tried doing: * repair permission

  • How to read properties stored in jar file

    Hello I got one question. I created properties file in my project, which contains some texts for panels. When I start application from JBuilder all works fine. This priperies file is stored in path "cmt/locales/CMTModule.properties". Problem is only

  • How do I import photos from a memory card that didn't have the date and time set yet?

    Aloha, So I got a new 5dmark 3 and I was shooting a wedding and didn't set the date and time before I started shooting. When I uploaded the images to Lightroom they uploaded all over the place and not in order. Is there a way to upload to lightroom a