BGInfo and script to insert image

hi prototype, thank for your response
BGInfo is tool to create desktop wallpaper and I run it at logon script. If the data still in text base, still possible for me to show it with BGInfo. But, for picture, picture file or ThumbnailPhoto from AD, I cannot load it with BGInfo.
The problem is not copying picture file, but load it with BGInfo.

Hi,
I run BGInfo in my environment.
The problem come when management ask us to display user picture in every desktop.
The stupid idea is create template for each user. However this is just temporary solution.
I search on the net how to insert picture by script to BGInfo, but no result.
Some use vbs to show picture, but its not work in BGInfo.
If someone have same problem and already got an answer, please kindly share
This topic first appeared in the Spiceworks Community

Similar Messages

  • Creating a script for inserting images

    I am new to the scripting concept, so please forgive me when I use incorrect terminology.
    I would like to create a script that will automatically place images in my InCopy document. Basically I want to type the names of image files in an InCopy document then run a script that will replace the name of the file with the actual image (either as an embedded image or as an image in a graphics frame, although the graphics frame might not work if the document isn't linked to an InDesign document.)
    I'm assuming I'd have to identify the image name in some way (slashes or something before and after) and during the script I'd have to identify where to find the given images, such as which folder they are in.
    Is this possible in InCopy?
    Eventually, these InCopy documents will be used in InDesign. Would it be better/faster to use a script to import these images into InDesign instead of InCopy?
    (In case the information is important, the images are all either .tif files or .eps files.)
    Also, how do I find someone who can write this script for me? I'm assuming there are freelance programmer people out there... how do I find one?
    Thanks for any advice/help you can give me!

    senza wrote:
    this is ok, this i understand now. But where to tell which schema for which user?I don't understand this question. You create a synonym in your own schema for the object you want a synonym for...
    so instead of referencing
    select * from scott.empyou would create a synonym for scott.emp, so you can do
    select * from emp

  • Use scanner or/and camera to insert image into oracle database BLOB feild

    can any body show how i can do these? send me an example to do this?
    notice: i'am using oracle form 6i & oracle databse 10g
    best regards
    hamdan
    Edited by: user633386 on 05/07/2011 11:57 م

    It's been discussed now and then. Hope this helps:
    Insert Picture (image) using oracle forms
    Looks like a keyword to search on is read_image_file
    This all assumes that we know the name of the file.

  • Search .docx and replace text with image

    I've got a directory containing a series of images. The images will always be the same name and I need to insert them into placeholders in a Word document which will be a template. I thought of using the image names as placeholders, opening the document
    and searching for the image name, replacing it by inserting the image, and doing so for each image in the directory.
    $file is the name of the image in the directory and it loops through them okay.
    foreach($file in Get-ChildItem $savepath -Filter *.jpg)
            # search word doc and replace selected text with image ($file)    
    Also inserting the image seems simple enough from a TechNet article I found, but I've got no idea how to open the Word document and do a search and replace. I found a few articles related to the subject but I couldn't get them to work when I tried to adapt
    them.
    Any help is appreciated. Thanks in advance.

    This 'might' be possible, but I'm having a hard time finding good references to the com object capabilities for inserting an image into a word document.  Creating new, converting format, that sort of thing is straightforward.
    I'd do a search on "powershell word comobject" and variations of insert image update edit, etc.  Or maybe someone else with more experience/knowledge has a magic bullet for you.  Once you get some info on doing it with powershell, expand
    your search by omitting the powershell keyword, there's gotta be some solid documentation for the comobject somwhere, but it will probably be a bit complex.
    You can also:
    $word = new-object -comobject word.application
    $doc = $word.documents.add("<path to word document>"
    and get-member to your heart's content, but finding references and/or documentation might be easier.  
    Good luck!
    Edit:  This could help, but really doesn't give much insight into placement of the image, only helps getting the image into the doc:  http://gallery.technet.microsoft.com/office/44ffc6c8-131f-42f1-b24b-ff92230b2e0a
    If you do find something useful, post it here, I'm sure others could benefit!
    SubEdit:  Should have thought of this already...
    http://msdn.microsoft.com/en-us/library/ff837519(v=office.14).aspx

  • Dreamweaver CC 2014 Changes Insert Image

    I maintain a club web site where I link images from a club photosharing web site to show on this site.  Up until this month I have right-clicked on the image on the other site, selected "copy Image URL" and then selected Insert Image in Dreamweaver and the website URL was inserted in the <img src= code.  This has worked very well to minimize my having to have the same image on two different web site.  Now for some reason, when I copy the URL, Dreamweaver follows the <img src = with a reference to a temporary file in my user directory and wants to know if I want the file moved to the site root directoy on my computer.  I would then have to put the file to the web server, using my quota there, and remember to delete it both places when I'm no longer displaying in.  This is all a pain.  Is there some way to revert to the previous Insert Image method?

    Go into code view and change the image source there as in
    <img alt="Adobe Logo" src="https://forums.adobe.com/themes/adobe-global/images/logo.png" />

  • How to insert image into table and to in Oracle 9i intermedia?

    Mr Lawrence,
    I want to ask something:
    I use Oracle 9i intermedia
    If i use this script:
    CREATE TABLE images (
    file_name VARCHAR2(100) NOT NULL,
    image ORDSYS.OrdImage
    then
    CREATE OR REPLACE DIRECTORY imgdir AS 'd:/data';
    then
    INSERT INTO images (file_name, image)
    VALUES ('tree', ORDSYS.ORDImage.init('file','imgdir','tree.jpg' ));
    I put tree.jpg in directory d:/data in my hard drive.
    Is my tree.jpg file had already get in to my images table?
    I'm little confuse, because when i check my table with this script:
    select file_name, i.image.getWidth() from images i;
    it's show that my i.image.getWidth() for file_name tree is empty.. that mean my tree.jpg doesn't get in to my table.. am i correct?
    N also i want to ask how to display to screen all of my image from images table?
    Is it posible Oracle 9i intermedia to support display image from table?
    How?
    thanks Mr Lawrence

    -- First step would be to create a directory in oracle and map it to the folder where your image resides.
    create directory image_dir as *'c:\image_dir';*
    Then you would have to use a procedure to insert the image in your table. SO first create a table to hold the image. Note that you have to use a BLOB to insert the image.
    CREATE TABLE test_image
    ID NUMBER,
    image_filename VARCHAR2(50),
    image BLOB
    Now let's write the procedure to insert the image in the table above.
    CREATE OR REPLACE PROCEDURE insert_image_file (p_id NUMBER, p_image_name IN VARCHAR2)
    IS
    src_file BFILE;
    dst_file BLOB;
    lgh_file BINARY_INTEGER;
    BEGIN
    src_file := BFILENAME ('image_DIR', p_image_name);
    -- insert a NULL record to lock
    INSERT INTO temp_image
    (ID, image_name, image
    VALUES (p_id, p_image_name, EMPTY_BLOB ()
    RETURNING image
    INTO dst_file;
    -- lock record
    SELECT image
    INTO dst_file
    FROM temp_image
    WHERE ID = p_id AND image_name = p_image_name
    FOR UPDATE;
    -- open the file
    DBMS_LOB.fileopen (src_file, DBMS_LOB.file_readonly);
    -- determine length
    lgh_file := DBMS_LOB.getlength (src_file);
    -- read the file
    DBMS_LOB.loadfromfile (dst_file, src_file, lgh_file);
    -- update the blob field
    UPDATE temp_image
    SET image = dst_file
    WHERE ID = p_id AND image_name = p_image_name;
    -- close file
    DBMS_LOB.fileclose (src_file);
    END insert_image_file;
    Now execute the procedure to insert the image.
    EXECUTE insert_image_file(1,'test_image.jpg');
    Thanks,
    Aparna

  • Problem: insert images by script

    Hello.
    I have problem with insert images from script like this: <& "H:\P1010014.tif">.
    After insert all images are square :(
    But i need its own sizes and proportions.
    P.S.: i can`t write in tag width and height because in all images its different

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web site development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Insert Link and Insert Image broken in Chrome

    The Insert Link and Insert Image buttons have been broken in my Chrome for at least the last couple of days (latest version, 32.0.1700.72 m, Windows 7 64).  
    When you click one of the buttons, the overlay window appears with a title, but it is otherwise black with no contents.  (See screenshot below.)
    The buttons work fine in Firefox.  What hasn't helped: deleting cookies, clearing the browser cache, waiting for several minutes for their content to appear.

    Whtat are we supposed to Claudio? All descend on Adobe with  clubs and try to beat some sense into someone!
    The fact is the customer is no longer the prime concern. Most companies don't give a Rats behind (toned down to prevent censors action) about the customers. It's the almighty dollar. Screw as many customers as they can while they can and line their pockets with all the green backs  as they can while they can. Then if the cusomers leave so be they take their money and run.
    Customer use to have power, they would speak loud and frequently and get things  fixed. And what with people from other countries now owning US companies, That were brought up with different moral compasses. They have no concept of this thing of loyalty to customers. The customer can jump off a cliff and they will simply cheer them on while the do so.
    We have lost, the fight can't be won. It no use. So Pat and others are right.
    I've been trying for 15 years for adobe to fix the issue of having multiple Pdfs created from Office documents because the claim they can't figure out how MS does Page and section breaks. And the issue of Weblinks not being active when converted to PDF's Both on Mac's yet on PC's there is no issue. I quite this year after I received a down right nasty not from Adobe say they didn't have any interest in fixing the bugs and were not about to try. What it amounted was go take a flying leap.
    They have the ability. They have beenblaming Its apple because they don't do such and such , or Microsoft because they don't do so and such. On the Links issue Saying MS doesn't provided the necessary hooks in the mac version of Office. They do you can take a Word document created on a Mac and open a PC and create a PDF and the links will be active. You can Open a Word Document in Apple's pages and all links created in Office document will be there.  The argument has been proven several different ways to be a an outright bald-faced lie. The defect is squarely with the Mac version of Acrobat.
    So Pat and others are right. Just throw in that towel. Adobe support of its customers is now 10 times worse than intuit's which is supposed have the lowest reputation of any software compny that ever existed.

  • I have just downloaded Mac OS X 10.9 and Pages 5. When I open any pre-existing document in the new Pages the format is zoomed to 125%, the headers are out of position, the margins are changes, and inserted images are also relocated. What can I do?

    I have just downloaded Mac OS X 10.9 and Pages 5. When I open any pre-existing document in the new Pages the format is zoomed to 125%, the headers are out of position, the margins are changes, and inserted images are also relocated. What can I do?

    Have you tried resetting the SMC ?     >  Resetting the System Management Controller (SMC)

  • Inserting image in richtexteditor and text

    HI all,
       I am new to Flex 3. I was creating AIR application. I want to insert image in to richtexteditor and text control. I tried adding <img> tag to html source and added htmlText to richtexteditor and text control, but its not considering img tag.
       So is there way I can include image(animated GIF) in to richtexteditor and text control?
    Thanks,
    John

    create a default base block on the table with the BLOB.
    Change the BLOB item to an image item.
    Use the read_image_file built in to load images to the image item. (see online help).
    That should do it.

  • How do i insert image and place it where i want to in the pdf

    hi
    i have converted a word to pdf.Now i have my text on the left and i have a image to be inserted on to the right. when i do insert the image just gets inserted in the center or on the top.

    Bill is correct that you have probably the most control by placing your image on a button.  However if you have Acrobat Professional you can use the Touch-up Object Tool to place a graphic.  Simply choose the Touch-up Object Tool i.e. Tools > Advanced Editing > Touch-up Object Tool and then right-click in the area you want to put your image and choose Place Image from the context menu.  If it is not in the exact place you should be able to move it around with the tool as well.
    Best of Luck!

  • How to create table and insert images and audio files ...

    hello to all , i am doing my b.e cse .
    at current v r studing DB and pl/sql codes ....
    i just need to know simple way of code to insert images and audio files in a table .
    i tried some of these ,
    CREATE TABLE myTable(Document varbinary(max))
    INSERT INTO myTable(Document)
    SELECT * FROM
    OPENROWSET(BULK N'C:\Image1.jpg', SINGLE_BLOB)
    but not workiing
    it shows some errors.
    i use oracle 10g. thank u :) and also i tried using blob and bfile datatypes , table created but cannot insert values !
    ROBOK

    hello to all , i am doing my b.e cse .
    at current v r studing DB and pl/sql codes ....
    i just need to know simple way of code to insert images and audio files in a table .
    i tried some of these ,
    CREATE TABLE myTable(Document varbinary(max))
    INSERT INTO myTable(Document)
    SELECT * FROM
    OPENROWSET(BULK N'C:\Image1.jpg', SINGLE_BLOB)
    but not workiing
    it shows some errors.
    i use oracle 10g. thank u :) and also i tried using blob and bfile datatypes , table created but cannot insert values !
    ROBOK

  • Is there a script that Quickly get the Equidistant and The same size images.

    Is there a script that Quickly get the Equidistant and The same size images.
    General,I used the paste into the interior one by one, when it is a lot ,will waste a lot of time

    Is there a script that Quickly get the Equidistant and The same size images.
    General,I used the paste into the interior one by one, when it is a lot ,will waste a lot of time

  • BLOBs and Inserting Images

    Hi,
    I'm trying to insert an image into the database using a BLOB datatype. I'm using PHP right now to code everything. I was wondering if anybody has resolved any of the errors I've gotten, or knows how to insert images into the database. I don't have intermedia. Thanks...
    $filename = "/u1/apache/docs/image.gif";
    $binary_file = addslashes(fread(fopen($filename, "r"), filesize($filename)));
    $sql_stmt .= "INSERT INTO mdi_err_image (err_id, err_image) VALUES ($err_id, '$binary_file')";
    $stmt = ociParse($conn, $sql_stmt);
    ociExecute($stmt);
    ORA-00972: Identifier too long (when I pass in a larger gif file)
    ORA-01465: invalid hex number error. (when I pass in a really small gif file)

    Hi there,
    I might know... But maybe your questions is not so clear... I don't know if I see what you want to do...
    Do you want to have an image in a shape causing wrapping and apply a picture frame or so to it?
    If so:
    1. Make your shape and put text in it
    2. Drop the image into iWeb
    3. Being sure it is selected copy it
    4. Go into your shape and paste your image into it
    5. Open up the Inspector and make the image wrap
    6. Again in the Inspector apply picture frames or whatever
    Thus you apply picture frames when it already is in the shape, not before.
    Regards,
    Cédric

  • Insert Image and Hyperlink

    After installing Dreamweaver CS3 a few months and having no
    real problems since, suddenly, whenever I click INSERT>IMAGE an
    image placeholder holder appears, rather than the usual dialogue
    window that used to pop up asking me to select my image. And at the
    same time, now when I click INSERT>HYPERLINK a"#" sign appears
    in my document. That's it! It just seemed to start out of the blue.
    Anybody else ever have Dreamweaver get sick like that?

    Jinifer,
    Fix by Hyperlinking with Text rather than the Graphic. If the graphic has a title, you can use that. Or, you can create a Text Box, create the Hyperlink in the text box text, and then set the text color to transparent and place it over the graphic. Then, when you click on the graphic, you will click the hyperlinked text first and your goal is achieved.
    Jerry

Maybe you are looking for

  • Time Machine doesn't recognize my backups now that I restored from it.

    After installing Lion 7.1 from the app store overy my Snow Leopard, my mid-2009 2.8 GHz MBP (15") started acting wonky . . . Would freeze up randomly, need to be hard-reset, would open up windows on boot-up that I DID NOT have open before (even if I

  • Open dataset filename for output in text mode encoding default

    Hi, When I excute this command I get a sy-subrc = 0, but no file is created. This happens in an ECC 6.0 system. In 4.6C works ok. filename has the following structure ' server\directory\filename' What am I doing wrong?? Thank you very much for your y

  • Description of enterprise service message types

    Hello people, I'd like to know where to find the description of the parameters of enterpise service operations. For example the operation "Create Invoice" (Process Component: SRM) needs a lot of input parameters. I took a look into the Integration Bu

  • Failed to retrieve data from the database error message

    Hello, I have a fairly simple report that correctly retrieves the data from the database providing that there are no selection formula. However, as soon as I add the record selection formula: {fireService.serviceDate} >= DateTime (2009, 10, 3, 0 ,0 ,

  • RKKBABS0 Performance Issues (Background Processing of CO99) for PM Orders

    We are experiencing extremely long run times when batch processing through program RKKBABS0 in ECC 6.0 (just upgraded). The issue appears to be that the program is using the production order numbers to search against the EXKN table which contains no