Try to find where are 3D conversion settings saved

Hi,
Is there any other way to change these settings, differs from "Edit->Preferences->Convert to PDF"? Maybe there are saved in file or into Windows registry? I'm a programmer and trying to simplify 3D conversion for my users. Thanks!
Best regards, Dmitry

I am dealing with a similar issue. I would like to save a backup copy of my customized 3D conversion settings. What directory does this write to?

Similar Messages

  • Where are custom equalizer settings saved on windows pc

    Where are iTunes custom equalizer settings saved on my Windows 7 hard drive? I always backup the entire iTunes folder and use that to restore everything after reformatting my hard drive. Everything restores EXCEPT the custom equalizer settings. Which file contains my custom EQ settings, and where is it found?

    Go to Edit>Preferences>Presets>Show Lightroom Presets Folder.
    These folders are usually (see below) actually in the same folder called 'Lightroom' where your catalog lives.
    If you back up the entire 'Lightroom' folder they should be there unless you have elected to put the folder elsewhere.
    Either way 'Show Lightroom Presets Folder' takes one there.
    You can copy and back it up seperately or as part of the greater 'ightroom folder' back up.
    Tony Jay

  • Where are Photo Screensaver settings saved?

    Hi,
    I need to programatically change settings for the Photo Screensaver. The registry keys used in Windows Vista no longer apply in Windows 7. I tried using a folder with an uncommon folder name to point the Photo Screensaver to so that it would be easier to find in the registry. When I do a registry search, the folder name cannot be found. Maybe this is kept in a settings file somewhere instead of the registry?
    We use a custom photo deck for our screensaver and it hasn't worked well to put it in the Pictures folder. You'll end up displaying personal photos along with the custom photos. I have been making a folder in Program Files and pointing the screensaver there.
    The settings I would like to be able to change are:
    Use pictures from: (you browse to the folder that contains your photos)
    Slide show speed: (change the transition speed of the photos)
    Shuffle pictures: (I would like to be able to check this box so the photos display randomly)
    If anyone knows where to find these settings, it would be greatly appreciated if you could share the location of these settings.
    Thanks,
    Rob

    you can use this code 
    cls
    #That string is encoded in Base64, without headers. There is a Windows API that encrypt binary arrays (the PIDL) to Base64, CryptBinaryToString. The dwFlags parameter should be set to CRYPT_STRING_BASE64.
    #Our problem is the inverse, given a Base64 string (the encoded PIDL), get the decoded PIDL. There's an API for that, too!, CryptStringToBinary. The dwFlags parameter should also be set to CRYPT_STRING_BASE64.
    #I think it is not hard to write a small program that uses those API's (and some more to get a "readable" path from the PIDL); ask in the MSDN forums to get directions if you get stuck.
    #http://www.ms-windows.info/Help/windows-photo-screensaver-settings-19334.aspx
    #http://msdn.microsoft.com/en-us/library/aa379887(v=vs.85).aspx
    #BOOL WINAPI CryptBinaryToString(
    # _In_ const BYTE *pbBinary,
    # _In_ DWORD cbBinary,
    # _In_ DWORD dwFlags,
    # _Out_opt_ LPTSTR pszString,
    # _Inout_ DWORD *pcchString
    #http://msdn.microsoft.com/en-us/library/aa380285(v=vs.85).aspx
    #BOOL WINAPI CryptStringToBinary(
    # _In_ LPCTSTR pszString,
    # _In_ DWORD cchString,
    # _In_ DWORD dwFlags,
    # _In_ BYTE *pbBinary,
    # _Inout_ DWORD *pcbBinary,
    # _Out_ DWORD *pdwSkip,
    # _Out_ DWORD *pdwFlags
    add-type @"
    using System;
    using System.Text;
    using System.Runtime.InteropServices;
    using System.Text.RegularExpressions;
    public static class PIDLUtils
    // funciones
    [DllImport("shell32.dll")]
    public static extern Int32 SHGetDesktopFolder(out IShellFolder ppshf);
    [DllImport("shell32.dll")]
    public static extern bool SHGetPathFromIDList(IntPtr pidl, StringBuilder pszPath);
    [DllImport("crypt32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool CryptBinaryToString(IntPtr pcbBinary, int cbBinary, uint dwFlags, StringBuilder pszString, ref int pcchString);
    [DllImport("crypt32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    private static extern bool CryptStringToBinary(string pszString, int cchString, uint dwFlags, IntPtr pbBinary, ref int pcbBinary, ref int pdwSkip, ref int pdwFlags);
    // interfaces
    [ComImport]
    [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    [Guid("000214E6-0000-0000-C000-000000000046")]
    public interface IShellFolder
    Int32 ParseDisplayName(IntPtr hwnd, IntPtr pbc, String pszDisplayName, UInt32 pchEaten, out IntPtr ppidl, UInt32 pdwAttributes);
    Int32 EnumObjects(IntPtr hwnd, ESHCONTF grfFlags, out IntPtr ppenumIDList);
    Int32 BindToObject(IntPtr pidl, IntPtr pbc, [In]ref Guid riid, out IntPtr ppv);
    Int32 BindToStorage(IntPtr pidl, IntPtr pbc, [In]ref Guid riid, out IntPtr ppv);
    Int32 CompareIDs(Int32 lParam, IntPtr pidl1, IntPtr pidl2);
    Int32 CreateViewObject(IntPtr hwndOwner, [In] ref Guid riid, out IntPtr ppv);
    Int32 GetAttributesOf(UInt32 cidl, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 0)]IntPtr[] apidl, ref ESFGAO rgfInOut);
    Int32 GetUIObjectOf(IntPtr hwndOwner, UInt32 cidl, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 1)]IntPtr[] apidl, [In] ref Guid riid, UInt32 rgfReserved, out IntPtr ppv);
    Int32 GetDisplayNameOf(IntPtr pidl, ESHGDN uFlags, out ESTRRET pName);
    Int32 SetNameOf(IntPtr hwnd, IntPtr pidl, String pszName, ESHCONTF uFlags, out IntPtr ppidlOut);
    // enumeraciones
    public enum ESHCONTF
    SHCONTF_FOLDERS = 0x0020,
    SHCONTF_NONFOLDERS = 0x0040,
    SHCONTF_INCLUDEHIDDEN = 0x0080,
    SHCONTF_INIT_ON_FIRST_NEXT = 0x0100,
    SHCONTF_NETPRINTERSRCH = 0x0200,
    SHCONTF_SHAREABLE = 0x0400,
    SHCONTF_STORAGE = 0x0800
    public enum ESFGAO : uint
    SFGAO_CANCOPY = 0x00000001,
    SFGAO_CANMOVE = 0x00000002,
    SFGAO_CANLINK = 0x00000004,
    SFGAO_LINK = 0x00010000,
    SFGAO_SHARE = 0x00020000,
    SFGAO_READONLY = 0x00040000,
    SFGAO_HIDDEN = 0x00080000,
    SFGAO_FOLDER = 0x20000000,
    SFGAO_FILESYSTEM = 0x40000000,
    SFGAO_HASSUBFOLDER = 0x80000000,
    public enum ESHGDN
    SHGDN_NORMAL = 0x0000,
    SHGDN_INFOLDER = 0x0001,
    SHGDN_FOREDITING = 0x1000,
    SHGDN_FORADDRESSBAR = 0x4000,
    SHGDN_FORPARSING = 0x8000,
    public enum ESTRRET : int
    eeRRET_WSTR = 0x0000,
    STRRET_OFFSET = 0x0001,
    STRRET_CSTR = 0x0002
    // constantes
    private const uint CRYPT_STRING_BASE64 = 1;
    // mis funciones
    public static string Encode(string myClearPath)
    IShellFolder folder;
    IntPtr pidl;
    string Pathcodificado;
    Pathcodificado = "ERROR";
    string myPathTextoPlano = myClearPath;
    //string myPathTextoPlano = @"c:\flashtool"; // Regex.Escape(myClearPath);
    // este es el folder del escritorio (raíz del espacio de nombres del shell)
    if (SHGetDesktopFolder(out folder) == 0)
    // pidl del archivo
    //folder.ParseDisplayName(IntPtr.Zero, IntPtr.Zero, @"C:\walter\yo.png", 0, out pidl, 0);
    folder.ParseDisplayName(IntPtr.Zero, IntPtr.Zero, myPathTextoPlano, 0, out pidl, 0);
    // parseo el pidl para obtener sus tamaño
    int k = 0;
    short cb = 0;
    // ONLY WORKS WITH .NET FRAMEWORK 4
    // while ((k = Marshal.ReadInt16(pidl + cb)) > 0)
    // cb += (short)k;
    IntPtr tempIntPtr = new IntPtr(pidl.ToInt64() + cb);
    while ((k = Marshal.ReadInt16(tempIntPtr)) > 0)
    cb += (short)k;
    tempIntPtr = new IntPtr(pidl.ToInt64() + cb);
    cb += 2;
    // encripto el pidl
    StringBuilder sb = new StringBuilder();
    int largo = 0;
    CryptBinaryToString(pidl, cb, CRYPT_STRING_BASE64, null, ref largo);
    sb.Capacity = largo;
    if (CryptBinaryToString(pidl, cb, CRYPT_STRING_BASE64, sb, ref largo))
    //Console.WriteLine(sb.ToString());
    Pathcodificado = sb.ToString();
    Marshal.FreeCoTaskMem(pidl);
    return Pathcodificado;
    public static string Decode (string myEncryptedPath)
    IShellFolder folder;
    // IntPtr pidl;
    string PathDescodificado;
    PathDescodificado = "ERROR";
    string mypathEncriptado = myEncryptedPath; // Regex.Escape(myEncryptedPath);
    // este es el folder del escritorio (raíz del espacio de nombres del shell)
    if (SHGetDesktopFolder(out folder) == 0)
    // Desencripto
    int a = 0;
    int b = 0;
    int largo = 0;
    CryptStringToBinary(mypathEncriptado, mypathEncriptado.Length, CRYPT_STRING_BASE64, IntPtr.Zero, ref largo, ref a, ref b);
    // recreo el objeto
    IntPtr pidl2 = Marshal.AllocCoTaskMem(largo);
    //if (CryptStringToBinary(sb.ToString(), sb.Length, CRYPT_STRING_BASE64, pidl2, ref largo, ref a, ref b))
    StringBuilder sb = new StringBuilder();
    if (CryptStringToBinary(mypathEncriptado, mypathEncriptado.Length, CRYPT_STRING_BASE64, pidl2, ref largo, ref a, ref b))
    // muestro el path proveyendo el pidl reconstruído
    //sb.Clear(); Only works with .NET 4
    sb.Length = 0;
    sb.Capacity = 261;
    SHGetPathFromIDList(pidl2, sb);
    //Console.WriteLine(sb.ToString());
    PathDescodificado = sb.ToString();
    //Marshal.FreeCoTaskMem(pidl);
    Marshal.FreeCoTaskMem(pidl2);
    return PathDescodificado;
    try
    $MyPath = "c:\Windows"
    $Encrypted = [PIDLUtils]::Encode($MyPath)
    $Encrypted
    $notEncrypted = [PIDLUtils]::Decode($Encrypted)
    $notEncrypted
    catch
    $_
    break

  • Where are Flash CS4 settings saved?

    Anyone know where Flash CS4 settings are saved [folder
    location]? Such as keyboard settings, preferences, commands, etc.?
    I want to be able to back them up and copy them to another PC.
    Thanks.

    Anyone know where Flash CS4 settings are saved [folder
    location]? Such as keyboard settings, preferences, commands, etc.?
    I want to be able to back them up and copy them to another PC.
    Thanks.

  • Experts - where are the main settings for country currency settings

    Hi
    where are the main settings for different country currency settings.
    Ex:
    us,canada and europe customers us$, canada $, europe euro,
    How the pricing will effect for different country customers?
    Any one can help me on this.
    Any documents on thes please send to [email protected]
    Thanks
    Kris

    You can find this in the following path.
    SPRO->GENERAL SETTINGS> SET COUNTRIES>DEFINE COUNTRIES-->
    Here countries have an ISO CODE
    Then
    SPRO->GENERAL SETTINGS>CURRENCIES-->CHECK CURRENCY CODES
    Here ISO codes mapped to currencies.
    If CCode currency = Customer master currency, then transactions will happens in that currency
    If CCode currency<> Customer master currency, then the exchange rate will come into play to convert customer currency to company code currency.
    And anway if you want a different currency from the country currency, you can mention that in ccode configuration. The presence of currency in company code configuration is must and hence configuration at country level is not needed I think
    Hope this helps.
    Rewards pls
    Message was edited by:
            Navaneetha Krishnan

  • Where are all the settings stored?

    When working with Data Modeler users can setup a couple of preferences.
    E.g. windows size and position on desktop but others as well.
    Where are all these settings stored?
    Is it a file or in Win Registry?
    How can I backup these (current) settings?
    In addition I want to copy them onto another Data Modeler installation on another computer and use them over there as well.
    Do 32bit and 64bit version access the same settings values?
    Thank you
    Peter
    Edited by: user559463 on Nov 7, 2012 11:48 PM

    Hi,
    In Tools -> Preferences->Data Modeler there are import/export buttons.
    Use export to create file and import it on another computer.

  • How do I answer calls with the KITKAT update?  I hit the flashing button but it's still ringing?  Where are the Answer settings?

    How do I answer calls with the KITKAT update?  I hit the flashing button but it's still ringing?  Where are the Answer settings?

    Aha!  Thank you!!!  That was not obvious. Sometimes I don't get the green and red icons.  So it's slide it to the right for answering and slide to the left for voice mail.

  • I have final cut pro x-i have been using the share button previously and had no problem.as of today i share a movie to 720hd, and after a white it says share successful but i cannot find where the movie has been saved???need help

    i have final cut pro x-i have been using the share button previously and had no problem.as of today i share a movie to 720hd, and after a while it says share successful but i cannot find where the movie has been saved???need help--i cannot find the destination. can this be changed.it used to go to itunes, home video.thanks, dimitrios

    EExactly what settings are you using. Some go to iTunes.

  • Where are  previous icloud settings? - I just updated to 10.8.5

    Where did my iCloud settings go with the update to 10.5.8?  Signed on to locate my iPad and my iCloud settings to find my stuff are gone!

    Try resetting them in System Preferences/iCloud.

  • Where are iTunes sync settings stored?

    After upgrading to iOS 6 on my iPhone 4, the sychronization settings it iTunes appear to have been reset on my Macbook Pro. Another strange thing about this "reset" is the only settings affected were those for Music and Video.
    I had updated several apps on the Macbook and needed to sync those apps to my iPhone, as well as a couple purchased on the iPhone since my last sync with the Mac. So ... I connected my iPhone to the Macbook, and after reconizing my phone the "Sync" button became activated. Since I was on the Summary page, I suspected no changes, as I had made none, and the Capacity bar was full to about .2GB Free, as expected. I pressed the "Sync" button as usual.
    Somewhere between steps 1 and 2 (or during step 2), the Capacity bar dropped  to Green, Yellow and a sliver of Orange with 23.2GB Free?!? Whassup?? As there was no method (I am aware of short of powering down the laptop) to pause/stop sync in progress, which I suspect would be dangerous anyway, I was forced to let it complete. After it finished. I checked my iPhone and the music and videos had all been removed. When I examined the sync settings in iTunes, I noticed the Sync Music and Sync Movies check boxes were selected. All other check boxes below them for Music: Playlists, Artists, Albums, Genre, Include music videos; and Movies: Movie Names, had mysteriously been unselected.
    Since all my files are still in the proper folders on the Macbook Pro, and I use Time Machine, I am not concerned about file loss. What I am concerned with is how did this happen and where are these settings stored, so I do not have to go through ehem all and reselect each and every one to prevent this from recuring in the future. The technician and his manager could not find the location of these settings, as we tried replacing an older version from Time Machine to no avail.
    Could anyone please tell me where the Synchronization settings in iTunes are stored, so I might be able to recover the proper file and not have to reselect each sub-selection to return my music and videos to the iPhone? I can Restore my iPhone from the backup just prior to the Sync; however, these does nothing to prevent the incorrect iTunes Sync settings from removing my music and video next time to transfer/sync upgraded apps.
    Thank you in advance for your assistance. For more details see below regarding OS, iTunes and iPhone versions.
    Sincerely,
    Wynne Hunkler
    OS:          10.7.5 (Lion)
    iOS:          6.0 (10A403)
    iTunes:     10.7 (21)

    I think the device stores those selections along with which library they belong to. That's why you get the prompt to erase and reload with a different library. If you had restored the backup taken immediately before the upgrade that would probably have restored your selections.
    tt2

  • Where are ethernet config settings stored?

    Anyone know where the ethernet config settings are stored in the system? I need to remotely adjust all of my clients to auto negotiate.
    Thanks!

    I found a command to make the adjustment:
    networksetup -setMedia en0 autoselect

  • Where are Smart Mailbox settings?

    Hello
    I set up a large number of Smart Mailboxes on my Macbook and they synced over to my iMac. Now, however, they have disappeared from the Macbook and i am getting a prompt to delete them on the iMac when it tries to sync.
    Can anyone tell me where the Smart Mailbox settings are kept so I can copy it and let the sync happen and not have to recreated the whole thing?
    Thanks heaps
    deb

    They are in the /Home/Library/Mail/ folder:
    SmartMailboxes.plist
    SmartMailboxes.plist.backup
    VersionedSmartMailboxes.plist
    VersionedSmartMailboxes.plist.backup

  • Where are iWeb pages stored/saved?

    Hi all. I'm building my first website using iweb. there is one (of only 3 so far) page that is apparently corrupted. whenever i click on that page name in the sidebar, iweb crashes, so i can't delete it using the edit/delete page dialogue.
    if i can find where my iweb pages are saved, i'll just go there and then drag the page to the trash....
    thanks

    The pages do not exist until you publish them. The elements that comprise the pages are stored in the Domain.sites2 file/package that's located in your User/Library/Application Support/iWeb folder.
    Are there any messages in the Console regarding iWeb that might indicate what's causing the problem.
    Aside from the above you can try the following: create a new site and drag the two working pages to it. Then click on the first site's folder icon and see if you can delete the entire site. If that works then all you need to do is recreate that one page.
    Also be sure to make a backup of the domain file frequently. Saves a lot of rebuilding in case something goes south in that domain file.
    OT

  • Where are the downloaded files saved in Firefox Andriod App?

    I have downloaded quite a few PDF files throught firefox app but now I can't find where they are please help.

    Hi Arsalan_Azhar,
    Firefox does not use the native Android download manger. It uses its own. The download folder is /sdcard/download/.
    Thanks,
    jm

  • Where are the Image Settings?

    In Adobe's Bridge Reference, it says, "Here are some tips for automating the processing of camera raw image files:
    When you record an action, first select Image Settings from the Camera Raw Settings menu [icon appears here] in the Camera Raw dialog box. In this way, the settings particular to each image (from the Camera Raw database or sidecar XMP files) are used to play back the action."
    Problem is, I cannot find the Camera Raw Settings menu anywhere in the Camera Raw dialog box, and I cannot find anywhere in the documentation where it tells you how to do what they're recommending here. I'm confused as to whether the action recording takes place in Photoshop (most likely), Bridge, Camera Raw, or the Image Processor. I was under the impression that, of these four, actions can only be created in Photoshop, but now I'm not so sure, since this paragraph says that while the action is being recorded it has to be selected from the Camera Raw dialog box. WHERE DOES ONE FIND "Image Settings" IN THE CAMERA RAW DIALOG BOX?
    Edit: Actually, I found the Image Settings selection, but it is still unclear how I can incorporate it into an action. Can I invoke the Camera Raw dialog box while recording an action? if so, how?

    Record an Action after opening a file into Photoshop, so the Action contains no Open command but it does contain Save and Close.
    Run the Action in a Batch with disabled 'Override Action "Open" Commands' and enabled 'Override Action "Save As" Commands'.

Maybe you are looking for

  • Number of line exceeds in source file by 999 then create another IDOC

    Hi I am working on a scernario There 3 source files and each file should may have more than 999 lines. I need to create idoc only for 999 lines so when lines exceeds then new idoc should be created. Can anyone tell me the resolution for the same. Reg

  • Iphoto book questions

    I want to test print the book so I can proof the text and ask for input from non mac users. I have ordered books before from apple and mypulisher and love them. I'm working on a book about grandma and want to get input from relatives. most of them ha

  • Connection woes - disconnects every 1-2 minutes

    Hello folks, I'm having some frustrating issues and am hoping someone may be able to help. I'll try explain it in some kind of logical order. Problem: Everyone in the house is effectively losing connection on average every one or two minutes for arou

  • Plastic Surgery Before and Afters... best program?

    Hi guys, I am brand new to graphic designing or anything related to it! I'm currently looking to do side by side before and after pictures for my office. Sometimes the pictures differ in color or contrast or need to be cropped. Sometimes a patient re

  • IS-Retail Allocation Table Relevant setting in PO

    SMEs, Can we default the Allocation Table Relevant field (EKPO-AUREL) to a specific value in a PO. This field is found under the Retail tab of the line item details in the PO (ME23N). Thanks, Dilip