Can't find the pick whip in AE CS4

Well, not completely the case, there is a pick whip on each of the layers, however, there isn't one where I need it.  i.e. I'm trying to attach the motion tracking attach point, to an effect on a different layer.  or on the same layer as in this pic example.
Am I missing something?

Alt+click the stopwatch and an expression pickwhip will appear.
Mylenium

Similar Messages

  • Where can I find the installer download for Dreamweaver CS4? Need to re-install.

    I need to re-install DW CS4 on a new system, but have misplaced the installer. Where can I find this?
    Went through tech-support, btw, and was directed here.
    Thanks in advance.

    if you follow all 7 steps you can directly download a trial here:  http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html
    and activate with your serial number.
    if you have a problem downloading, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com

  • I can't find the pathfinder panel in Illus. cs4

    I have looked in my window menu and it is not there as a choice. I have typed in pathfinder and pathfinder panel in the help dialog box
    and neither word is found. Can anyone help. Please.
    thanks much.
    Betsy W.

    Do you have a listing for the Transform or Align panels? They are often docked with the Pathfinder panel. If none of them show up it is probably time to reset the preferences. Hold down the Cmd(Ctrl)+Opt(Alt)+Shift when starting to reset the preferences.

  • I can't find the pipet in the toolbox to pick a color from a picture. Where can I find it?

    I can't find the pipet in the toolbox to pick a color from a picture. Where can I find it?

    In InDesign CC 2014, the Color Theme tool has "top billing" and the Eyedropper tool is underneath it. In the US English version, pressing the letter "I" toggles between the two.

  • PSE 9 Organizer Slide show can't find the slide show project files after moving from XP to Windows 7

    A bad computer virus forced us to move all our files and programs from XP to Windows 7.  The PSE Editor seems to be working properly, but the Organizer Slide Show can't find the project files.  The structure of each of the 15 slide shows (blank slides) is there and any text I had added, but the pictures and music are missing.  Our computer Tech is not too familiar with PSE and may not have the files in the right spot.  Evidently XP and Windows 7 are organized a little differently and use different names.  He still has all the PSE files from our old hard drive in a folder and probably just needs to know where to put them.         

    +Windows Vista has different file locations than Windows XP+
    This is the problem - the iTunes ITL file from XP is using XP paths, which don't exist in Vista. Here are some directions that have worked for others:
    - Copy your entire iTunes folder --- not just the iTunes Music folder but basically everything under "My Documents" - to external storage
    - Copy those files to your "Music" folder on your Vista system. The end result should be that you have "Documents\Music\iTunes" on Vista, where you had "My Documents\My Music\iTunes" on XP
    - Put a fresh install of iTunes on the Vista system.
    - When you run iTunes for the first time, hold down the Shift key. If it asks you to select a library file, pick the one you just transferred over.
    - The end result should be your library, including all ratings, play counts and play lists, sitting on the new system.

  • I can't find the color I used

    Some time ago I made website buttons.  I now need to change the text on top of one of the buttons, but I can't figure out the exact color I used.  The dropper does not pick the original shade.  It seems to be off.  The button was rasterized and saved as a JPEG.  The original PSD file is gone.  I hope I don't have to redo 11 buttons just because I can't find the original color.  Can anyone help?
    I attached a copy of the button.  It is the blue color on top and not the rollover color I need to find.

    The problem comes from the fact that the text is small and there's a lot of JPG artifacting. Even if you find the original color, it will still look off compared to the other buttons while in Photoshop because of the lack of JPG artifacting. You'll likely have to preview the colors using File->Save for Web & Devices set to JPG and a low quality setting.

  • Can't find the file ?php echo $editFormAction; ? in XAMPP

    I used the insert record function in CS4 on a page I'm working on.  I'm running XAMPP in win XP.
    Whenever I load the page into firefox, fill out the forms with random data, and click the submit button, I get the following error:
    can't find the file at /C:/xampp/htdocs/MySite.com/<?php echo $editFormAction; ?>
    I have been trying to research this a bit myself, and I think the problem may simply be that the editFormAction script is not in the root folder of my site.  But I am not sure where it is, and so, what to change the reference to.
    Or perhaps I'm completely wrong about this???
    Please Help Me!!

    Well, I have to chuckle a bit because the article on how to set up a php testing server that you wrote is the exact one I read to set up my testing server!  It is very well written and probably the most helpful and straight foreward article on setting up dreamweaver with XAMPP on the web.  I followed all of the instructions exactly, so I imagine the problem must be elsewhere?  It's pointing to the C drive because that's where XAMPP is installed.  This is how is it supposed to be setup, correct?  Apache and MySQL are running, or at least it says so on the XAMPP control panel.
    Also, I apologize for not posting this in the right forum.  That was my first post on the adobe boards and I didn't really consider inserting records to a database to be an "application."  So thanks for pointing me in the right direction.
    for those who want to see my code, here it is.  Except for the exact names of the fields, it's exactly what dreamweaver creates when youc click on the "insert record" button in the insert menu.  I don't see any option for pasting the code as "code" like in most code devolpoer forums.  I know some poeple get upset if you paste code without doing it right, so I hope I'm not making anybody mad.
    the following is inserted in the head:
    <?php require_once('Connections/GiftListConnection.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
      $updateSQL = sprintf("UPDATE ff SET EmailAddress=%s, Relationship=%s WHERE FirstName=%s",
                           GetSQLValueString($_POST['EmailAddress'], "text"),
                           GetSQLValueString($_POST['Relationship'], "text"),
                           GetSQLValueString($_POST['FirstName'], "text"));
      mysql_select_db($database_GiftListConnection, $GiftListConnection);
      $Result1 = mysql_query($updateSQL, $GiftListConnection) or die(mysql_error());
      $updateGoTo = "ManageFF.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form2")) {
      $insertSQL = sprintf("INSERT INTO ff (FirstName, EmailAddress, Relationship) VALUES (%s, %s, %s)",
                           GetSQLValueString($_POST['FirstName'], "text"),
                           GetSQLValueString($_POST['EmailAddress'], "text"),
                           GetSQLValueString($_POST['Relationship'], "text"));
      mysql_select_db($database_GiftListConnection, $GiftListConnection);
      $Result1 = mysql_query($insertSQL, $GiftListConnection) or die(mysql_error());
      $insertGoTo = "ManageFF.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    mysql_select_db($database_GiftListConnection, $GiftListConnection);
    $query_Recordset1 = "SELECT * FROM ff";
    $Recordset1 = mysql_query($query_Recordset1, $GiftListConnection) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    and then this is the actual form code in the body:
    <p class="Bold">&nbsp Add new family member or friend...</p>
    <form action="<?php echo $editFormAction; ?>" method="post" name="form2" id="form2">
      <table align="left">
        <tr valign="baseline">
          <td nowrap="nowrap" align="right">FirstName:</td>
          <td><input type="text" name="FirstName" value="" size="32" /></td>
        </tr>
        <tr valign="baseline">
          <td nowrap="nowrap" align="right">EmailAddress:</td>
          <td><input type="text" name="EmailAddress" value="" size="32" /></td>
        </tr>
        <tr valign="baseline">
          <td nowrap="nowrap" align="right">Relationship:</td>
          <td><input type="text" name="Relationship" value="" size="32" /></td>
        </tr>
        <tr valign="baseline">
          <td nowrap="nowrap" align="right"> </td>
          <td><input type="submit" value="add" /></td>
        </tr>
      </table>
      <input type="hidden" name="MM_insert" value="form2" />
    </form>
    Thanks for trying to help out this noob, everybody!
    BTW, this is Inkexit posting.  For some reason when I logged in this morning, I was made to pick a new screenname, as inkexit was already in use.  But I knew that though, as I was the one using it, lol.  Kinda bizzarre.  Perhaps the Mods should know about this?

  • I have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    i have bought a film from itunes and the credit has come out of my account, but i can't find the film anywhere, it said it was downloading, then i left the laptop and on return i couldn't find the film. how do i find the film?

    Maybe it is in the Purchased category of iTunes,
    Try going there

  • My external hard drive is 'seen' by my iMac and I can go into the Finder and open files and folders. I am using the hard drive for Time Machine back up. However Time Machine says it can't find the drive. Same thing has happened with Final Cut Express.

    My new LaCie external hard drive is 'seen' by my iMac and I can go into the Finder and open files and folders. I am using the hard drive for Time Machine back up. However Time Machine says it can't find the drive.
    The same thing happened recently between Final Cut Express and my other LaCie external hard drive used as the Scratch disk. It fixed itself.
    I've run out of ideas. Help would be very much appreciated. Thanks.

    have you done some searches on FCPx and time machine? Is there a known issue with using a TM drive with FCPx? dunno but ...wait...I'll take 60 sec for you cause I'm just that kind of guy....   google...." fcpx time machine problem"  Frist page link 
    http://www.premiumbeat.com/blog/fcpx-bug-best-practices-for-using-external-hard- drives-and-final-cut-pro-x/
           You cannot have time machine backups on your hard drive if you intend to use it in FCPX.
    booya!

  • Fire Fox sent not all the data in text form. Reached only piece of information. Where can I find the cache of sent text?

    Fire Fox sent not all the data in text form. Reached only piece of information. Where can I find the cache sent the text?
    For example, I posted an article on a news site, but found that only a small part of my article was posted.

    I'm not sure whether Firefox saved that information. There is a chance that it is in the session history file, especially if you haven't closed that tab yet. To check that:
    Open your currently active Firefox settings folder (AKA your Firefox profile folder) using
    Help > Troubleshooting Information > "Show Folder" button
    Find all files starting with the name sessionstore and copy them to a safe working location (e.g., your documents folder). In order to read a .js file, it is useful to rename it to a .txt file. Or you could drag it to Wordpad or your favorite word processing software.
    The script will look somewhat like gibberish, but if you search for a word in your article that doesn't normally appear in web pages, you may be able to find your data.
    Any luck?
    For the future, you might want to consider this add-on, although I don't know how long it saves data after you submit a form: [https://addons.mozilla.org/en-US/firefox/addon/lazarus-form-recovery/].

  • Help:Can not find the file in jar!

    Hello everyone:
    I build a project using Netbeans 5.0 and make a jar file with it...
    The code in the project as follows will throw an exception described that it can not find the file named datasource-config.xml
    String dataFilePath = getClass().getResource(dataFile).getPath();
    //System.out.println("filepath:"+dataFilePath);
    InputStream input = new FileInputStream(dataFilePath);
    when I run the project with the main() function as an entry it works perfectly and output:
    filepath:/C:/projects/java_project/search/build/classes/com/cn/wxjt/lucene/config/datasource-config.xml
    But when I compressed the project with jar and run it , it will show:
    filepath:file:/C:/projects/java_project/search/dist/search.jar!/com/cn/wxjt/lucene/config/datasource-config.xml
    there is a (!) between search.jar and /com/cn/wxjt...
    I dont know why I generate a ! symbol in the file path... Is it cause the exception->
    java.io.FileNotFoundException: file:\C:\projects\java_project\search\dist\search.jar!\com\cn\wxjt\lucene\config\datasource-config.xml
    If you have any idea, plz tell me.
    Thank you and best wishes to you !
    :)

    If the file you want to read is in your jar file, use
    getClass ().getResourceAsStream
    (relative_path_file_name)Hope that help,
    Jackhey jack i want to open the file as new File
    i m using this.getClass().getResource("resource/backend.xml");
    the resource is the directory inside the jar file.
    when i prints the url it shows:
    the jar file is in the WORK directory
    URL : jar:file:/home/neeraj/WORK/show.jar!/resource/backend.xml
    now when i creates new File using the url.getFile() method the file does not exist.
    although the same programs runs well when i uses the InputStream
    so plz tell me cant I create a new File from the above method????
    thanks in advance
    with regards
    neeraj

  • Can not find the SSIS in the msdb

    Hi Everyone,
    I'm using a SQL Server 2k5, and recently i was stuck with a SSIS issue. I have one job which needs to be changed. The job property is as below
    As we can see, the instance name is "DE-S-0157580\DE_S_0157580". Then I connect to the Integration Service as below:
    The interesting thing is even if I expand every single folder but I can find nothing at all. 
    Can somebody give me some advice? Thank you very much for your time and efforts.
    regards,
    Oliver

    Hi Vaibhav,
    Thanks for your reply. Under Maintenance plan folder, there is a database which actually contains nothing also. I executed the scripts you provided. I can definitely find the package that I need as well as many other packages in the result. But why I'm not
    able to see them in integration service. 
    regards,
    Oliver
    Ahh, see the link provided by Harry :)
    Your account must have db_dtsAdmin role if you are admin for all packages or just to view you must have
    db_dtsOperator role
    -Vaibhav Chaudhari

  • Can not find the the RBS tables after installing the Remote Blog Storage

    Hi,
    I am trying to configure the Remote Blob storage on my Sharepoint Server 2013. I am using the SQL Server Express 10.50.6000.
    Everything is going fine, but I can not find the tables in the Database.
    I am not sure where I did the wrong thing.
    machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    but the installation is looking for some other.
    Thanks in advance.
    === Verbose logging started: 3/23/2015 13:55:09 Build type: SHIP UNICODE 5.00.7601.00 Calling process: C:\Windows\system32\msiexec.exe ===
    MSI (c) (44:F8) [13:55:09:000]: Resetting cached policy values
    MSI (c) (44:F8) [13:55:09:000]: Machine policy value 'Debug' is 0
    MSI (c) (44:F8) [13:55:09:000]: ******* RunEngine:
    ******* Product: RBS.msi
    ******* Action:
    ******* CommandLine: **********
    MSI (c) (44:F8) [13:55:09:000]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (44:F8) [13:55:09:000]: Grabbed execution mutex.
    MSI (c) (44:F8) [13:55:09:016]: Cloaking enabled.
    MSI (c) (44:F8) [13:55:09:016]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (44:F8) [13:55:09:016]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (90:A4) [13:55:09:016]: Running installation inside multi-package transaction D:\RBS.msi
    MSI (s) (90:A4) [13:55:09:016]: Grabbed execution mutex.
    MSI (s) (90:34) [13:55:09:016]: Resetting cached policy values
    MSI (s) (90:34) [13:55:09:016]: Machine policy value 'Debug' is 0
    MSI (s) (90:34) [13:55:09:016]: ******* RunEngine:
    ******* Product: D:\RBS.msi
    ******* Action:
    ******* CommandLine: **********
    MSI (s) (90:34) [13:55:09:031]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (90:34) [13:55:09:031]: Setting cached product context: User non-assigned for product: FB42F99F09B0E3646985F32DFE3C9C29
    MSI (s) (90:34) [13:55:09:031]: Using cached product context: User non-assigned for product: FB42F99F09B0E3646985F32DFE3C9C29
    MSI (s) (90:34) [13:55:09:031]: Setting cached product context: machine assigned for product: 000021599B0090400100000000F01FEC
    115C834F46A5E33479CEE53534AD76A0
    :34) [13:55:09:265]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:265]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (90:34) [13:55:09:265]: Enabling baseline caching for this transaction since all active patches are MSI 3.0 style MSPs or at least one MSI 3.0 minor update patch is active
    MSI (s) (90:34) [13:55:09:265]: APPCOMPAT: looking for appcompat database entry with ProductCode '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'.
    MSI (s) (90:34) [13:55:09:265]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (90:34) [13:55:09:265]: Transforms are not secure.
    MSI (s) (90:34) [13:55:09:265]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'D:\rbs_install_log.txt'.
    MSI (s) (90:34) [13:55:09:265]: Command Line: TRUSTSERVERCERTIFICATE=true FILEGROUP=PRIMARY DBNAME=WSS_Content DBINSTANCE=jpntkyint01\sharepoint FILESTREAMFILEGROUP=RBSFilestreamProvider FILESTREAMSTORENAME=FilestreamProvider_1 CURRENTDIRECTORY=D:\ CLIENTUILEVEL=3 CLIENTPROCESSID=14660
    MSI (s) (90:34) [13:55:09:265]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{1AC68E73-94F1-4A01-B229-82B2F73C3326}'.
    MSI (s) (90:34) [13:55:09:265]: Product Code passed to Engine.Initialize: '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'
    MSI (s) (90:34) [13:55:09:265]: Product Code from property table before transforms: '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'
    MSI (s) (90:34) [13:55:09:265]: Product Code from property table after transforms: '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'
    MSI (s) (90:34) [13:55:09:265]: Product registered: entering maintenance mode
    MSI (s) (90:34) [13:55:09:265]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:265]: Determined that existing product (either this product or the product being upgraded with a patch) is installed per-machine.
    MSI (s) (90:34) [13:55:09:265]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:265]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is admin assigned: LocalSystem owns the publish key.
    MSI (s) (90:34) [13:55:09:265]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is managed.
    MSI (s) (90:34) [13:55:09:265]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding ProductState property. Its value is '5'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
    MSI (s) (90:34) [13:55:09:281]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Specifed source is already in a list.
    MSI (s) (90:34) [13:55:09:281]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'DisableBrowse' is 0
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'AllowLockdownBrowse' is 0
    MSI (s) (90:34) [13:55:09:281]: Adding new sources is allowed.
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Package name retrieved from configuration data: 'RBS.msi'
    MSI (s) (90:34) [13:55:09:281]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'DisableMsi' is 1
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (90:34) [13:55:09:281]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (90:34) [13:55:09:281]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:281]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is admin assigned: LocalSystem owns the publish key.
    MSI (s) (90:34) [13:55:09:281]: Product {56D21E05-679B-40F2-94C1-DB0D7EB2E461} is managed.
    MSI (s) (90:34) [13:55:09:281]: Running product '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}' with elevated privileges: Product is assigned.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding TRUSTSERVERCERTIFICATE property. Its value is 'true'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Modifying FILEGROUP property. Its current value is 'default'. Its new value: 'PRIMARY'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding DBNAME property. Its value is 'WSS_Content'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding DBINSTANCE property. Its value is 'jpntkyint01\sharepoint'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Modifying FILESTREAMFILEGROUP property. Its current value is 'default'. Its new value: 'RBSFilestreamProvider'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding FILESTREAMSTORENAME property. Its value is 'FilestreamProvider_1'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'D:\'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (90:34) [13:55:09:281]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '14660'.
    MSI (s) (90:34) [13:55:09:281]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (90:34) [13:55:09:328]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '489ffd242e95054781e9ce4b8d0b8aa5'.
    MSI (s) (90:34) [13:55:09:328]: RESTART MANAGER: Session opened.
    MSI (s) (90:34) [13:55:09:328]: TRANSFORMS property is now:
    MSI (s) (90:34) [13:55:09:328]: PROPERTY CHANGE: Adding PRODUCTLANGUAGE property. Its value is '1033'.
    MSI (s) (90:34) [13:55:09:328]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '300'.
    MSI (s) (90:34) [13:55:09:328]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\AppData\Roaming
    MSI (s) (90:34) [13:55:09:328]: SHELL32::SHGetFolderPath returned: C:\Users\medsvradmin\Favorites
    Action ended 13:55:09: AppSearch. Return value 1.
    Action start 13:55:09: ValidateProductID.
    MSI (s) (90:34) [13:55:09:390]: Skipping action: Sqlmsirc_CheckLanguage_64 (condition is false)
    MSI (s) (90:34) [13:55:09:390]: Doing action: CostInitialize
    Action ended 13:55:09: ValidateProductID. Return value 1.
    MSI (s) (90:34) [13:55:09:406]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (90:34) [13:55:09:406]: Baseline: Sorting baselines for {56D21E05-679B-40F2-94C1-DB0D7EB2E461}.
    MSI (s) (90:34) [13:55:09:406]: Baseline: New baseline 10.50.1600 from transaction.
    MSI (s) (90:34) [13:55:09:437]: Baseline: Sorted order Native: Order 0.
    MSI (s) (90:34) [13:55:09:437]: Baseline Data Table:
    MSI (s) (90:34) [13:55:09:437]: ProductCode: {56D21E05-679B-40F2-94C1-DB0D7EB2E461} Version: 10.50.1600 Attributes: 0 PatchId: Native BaselineId: -2147483648 Order: 0
    MSI (s) (90:34) [13:55:09:437]: Baseline File Table:
    MSI (s) (90:34) [13:55:09:437]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'D:\'.
    MSI (s) (90:34) [13:55:09:437]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (90:34) [13:55:09:453]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: Patch
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: PatchPackage
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: MsiPatchHeaders
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: __MsiPatchFileList
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: PatchPackage
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2228 2: 3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId`
    MSI (s) (90:34) [13:55:09:453]: Delta compression fallback method for this product transaction is 'MSI 2.0 legacy obsolescence'
    MSI (s) (90:34) [13:55:09:453]: Note: 1: 2205 2: 3: Patch
    Action start 13:55:09: CostInitialize.
    MSI (s) (90:34) [13:55:09:453]: Doing action: FileCost
    Action ended 13:55:09: CostInitialize. Return value 1.
    MSI (s) (90:34) [13:55:09:468]: Note: 1: 2205 2: 3: Class
    MSI (s) (90:34) [13:55:09:468]: Note: 1: 2205 2: 3: Extension
    MSI (s) (90:34) [13:55:09:468]: Note: 1: 2205 2: 3: TypeLib
    Action start 13:55:09: FileCost.
    MSI (s) (90:34) [13:55:09:468]: Doing action: IsolateComponents
    Action ended 13:55:09: FileCost. Return value 1.
    Action start 13:55:09: IsolateComponents.
    MSI (s) (90:34) [13:55:09:468]: Doing action: CostFinalize
    GE: Adding ClientDir1025 property. Its value is 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\ar\'.
    MSI (s) (90:34) [13:55:09:593]: PROPERTY CHANGE: Modifying ServerDir property. Its current value is 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Server'. Its new value: 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Server\'.
    MSI (s) (90:34) [13:55:09:593]: PROPERTY CHANGE: Modifying Eula1033 property. Its current value is 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\1033'. Its new value: 'C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\1033\'.
    MSI (s) (90:34) [13:55:09:593]: Target path resolution complete. Dumping Directory table...
    MSI (s) (90:34) [13:55:09:593]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: TARGETDIR , Object: D:\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: WindowsFolder , Object: C:\Windows\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ProgramFiles64Folder , Object: C:\Program Files\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: INSTALLDIR , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: GAC , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ClientDir , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ClientDir3082 , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\es\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ClientDir1025 , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\ar\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: ServerDir , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Server\
    MSI (s) (90:34) [13:55:09:593]: Dir (target): Key: Eula1033 , Object: C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\1033\
    MSI (s) (90:34) [13:55:09:593]: Doing action: IsDotNet20Or40Installed
    Action ended 13:55:09: CostFinalize. Return value 1.
    MSI (s) (90:34) [13:55:09:593]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'IsDotNet20Or40Installed'
    MSI (s) (90:34) [13:55:09:609]: Creating MSIHANDLE (1) of type 790542 for thread 9268
    MSI (s) (90:6C) [13:55:09:609]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIB261.tmp, Entrypoint: IsDotNetFramework20Or40Installed
    MSI (s) (90:FC) [13:55:09:609]: Generating random cookie.
    MSI (s) (90:FC) [13:55:09:609]: Created Custom Action Server with PID 14944 (0x3A60).
    MSI (s) (90:D0) [13:55:09:640]: Running as a service.
    MSI (s) (90:D0) [13:55:09:640]: Hello, I'm your 64bit Impersonated custom action server.
    MSI (s) (90!08) [13:55:09:640]: PROPERTY CHANGE: Adding DOTNETCOREPATH property. Its value is '1'.
    MSI (s) (90!08) [13:55:09:640]: PROPERTY CHANGE: Adding IsDotNet20Or40Installed property. Its value is '1'.
    MSI (s) (90:6C) [13:55:09:640]: Closing MSIHANDLE (1) of type 790542 for thread 9268
    One or more .NET Framework assemblies found in MsiAssembly table require the GAC, need to check for the .NET Framework
    MSI (s) (90:34) [13:55:09:640]: Skipping action: CA_ErrorPrereqDotNet20Or40 (condition is false)
    MSI (s) (90:34) [13:55:09:640]: Doing action: SqlFollowComponentsValidate_Redist_64
    Action ended 13:55:09: IsDotNet20Or40Installed. Return value 1.
    MSI (s) (90:34) [13:55:09:640]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'SqlFollowComponentsValidate_Redist_64'
    MSI (s) (90:34) [13:55:09:687]: Creating MSIHANDLE (11) of type 790542 for thread 9268
    MSI (s) (90:04) [13:55:09:687]: Invoking remote custom action. DLL: C:\Windows\Installer\MSIB281.tmp, Entrypoint: SqlFollowComponentsValidate
    Action start 13:55:10: InstallServices.
    MSI (s) (90:34) [13:55:10:498]: Doing action: StartServices
    Action ended 13:55:10: InstallServices. Return value 1.
    MSI (s) (90:34) [13:55:10:498]: Note: 1: 2205 2: 3: ServiceControl
    MSI (s) (90:34) [13:55:10:498]: Note: 1: 2228 2: 3: ServiceControl 4: SELECT `Name`,`Wait`,`Arguments`,`Event`, `Action` FROM `ServiceControl`, `Component` WHERE `Component_` = `Component` AND (`Action` = 0 OR `Action` = 1 OR `Action` = 2)
    Action start 13:55:10: StartServices.
    MSI (s) (90:34) [13:55:10:498]: Doing action: RegisterUser
    Action ended 13:55:10: StartServices. Return value 1.
    Action start 13:55:10: RegisterUser.
    MSI (s) (90:34) [13:55:10:498]: Doing action: RegisterProduct
    Action ended 13:55:10: RegisterUser. Return value 0.
    MSI (s) (90:34) [13:55:10:498]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:498]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    Action start 13:55:10: RegisterProduct.
    MSI (s) (90:34) [13:55:10:498]: Doing action: PublishComponents
    Action ended 13:55:10: RegisterProduct. Return value 1.
    MSI (s) (90:34) [13:55:10:498]: Note: 1: 2205 2: 3: PublishComponent
    MSI (s) (90:34) [13:55:10:498]: Note: 1: 2228 2: 3: PublishComponent 4: SELECT `PublishComponent`.`ComponentId`, `PublishComponent`.`Qualifier`, `PublishComponent`.`AppData`, `Feature`, `Component`.`ComponentId`, `Component`.`RuntimeFlags` FROM `PublishComponent`, `Component`, `Feature` WHERE `PublishComponent`.`Component_` = `Component`.`Component` AND `PublishComponent`.`Feature_` = `Feature`.`Feature` AND ((`Feature`.`Action` = 1 OR `Feature`.`Action` = 2) OR (`Feature`.`Action` = 4 AND `Feature`.`Installed` = 0) OR (`Feature`.`Action` = 3 AND (`Feature`.`Installed` = 1 OR `Feature`.`Installed` = 2 OR `Feature`.`Installed` = 4)))
    Action start 13:55:10: PublishComponents.
    MSI (s) (90:34) [13:55:10:498]: Doing action: MsiPublishAssemblies
    Action ended 13:55:10: PublishComponents. Return value 0.
    Action start 13:55:10: MsiPublishAssemblies.
    MSI (s) (90:34) [13:55:10:498]: Doing action: PublishFeatures
    Action ended 13:55:10: MsiPublishAssemblies. Return value 1.
    MSI (s) (90:34) [13:55:10:498]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:498]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    Action start 13:55:10: PublishFeatures.
    MSI (s) (90:34) [13:55:10:498]: Doing action: PublishProduct
    Action ended 13:55:10: PublishFeatures. Return value 1.
    MSI (s) (90:34) [13:55:10:513]: Resolving source to launched-from source.
    MSI (s) (90:34) [13:55:10:513]: Setting launched-from source as last-used.
    MSI (s) (90:34) [13:55:10:513]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'D:\'.
    MSI (s) (90:34) [13:55:10:513]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'D:\'.
    MSI (s) (90:34) [13:55:10:513]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{56D21E05-679B-40F2-94C1-DB0D7EB2E461}'.
    MSI (s) (90:34) [13:55:10:513]: SOURCEDIR ==> D:\
    MSI (s) (90:34) [13:55:10:513]: SOURCEDIR product ==> {56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    MSI (s) (90:34) [13:55:10:529]: SECREPAIR: CryptAcquireContext succeeded
    MSI (s) (90:34) [13:55:10:529]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:529]: Determining source type
    MSI (s) (90:34) [13:55:10:529]: Source type from package 'RBS.msi': 2
    MSI (s) (90:34) [13:55:10:529]: SECREPAIR: Hash Database: C:\Windows\Installer\SourceHash{56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    MSI (s) (90:34) [13:55:10:623]: SECREPAIR: Hash Value for the file:RBS.msi matched
    MSI (s) (90:34) [13:55:10:623]: Source path resolution complete. Dumping Directory table...
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: TARGETDIR , Object: D:\ , LongSubPath: , ShortSubPath:
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: WindowsFolder , Object: D:\ , LongSubPath: , ShortSubPath:
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: ProgramFiles64Folder , Object: D:\ , LongSubPath: Program Files\ , ShortSubPath: PFiles\
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: INSTALLDIR , Object: D:\ , LongSubPath: Program Files\Microsoft SQL Remote Blob Storage 10.50\ , ShortSubPath: PFiles\jfw2d1_t\
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: Eula3082 , Object: D:\ , LongSubPath: Program Files\Microsoft SQL
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: DocsDir , Object: D:\ , LongSubPath: Program Files\Microsoft SQL Remote Blob Storage 10.50\Documentation\ , ShortSubPath: PFiles\jfw2d1_t\gsutoqfr\
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: MaintainerDir , Object: D:\ , LongSubPath: Program Files\Microsoft SQL Remote Blob Storage 10.50\Maintainer\ , ShortSubPath: PFiles\jfw2d1_t\jygjogya\
    Files\jfw2d1_t\g-pfawke\pt-PT\
    MSI (s) (90:34) [13:55:10:623]: Dir (source): Key: ClientDir2052 , Object: D:\ , LongSubPath: Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\zh-CHS\ , ShortSubPath: PFiles\jfw2d1_t\g-pfawke\zh-CHS\
    Action ended 13:55:10: PublishProduct. Return value 1.
    MSI (s) (90:34) [13:55:10:638]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:638]: Using cached product context: machine assigned for product: 50E12D65B9762F04491CBDD0E72B4E16
    MSI (s) (90:34) [13:55:10:638]: Note: 1: 2205 2: 3: Shortcut
    MSI (s) (90:34) [13:55:10:638]: Note: 1: 2228 2: 3: Shortcut 4: SELECT `Shortcut`,`Name`, `FileName`, `Component`.`Directory_`, `Arguments`, `WkDir`, `Icon_`, `IconIndex`, `Hotkey`, `ShowCmd`, `Shortcut`.`Description`, `Shortcut`.`Directory_`, `Component`.`RuntimeFlags`, `Component`.`Action`, `Target`, `ComponentId`, `Feature`.`Action`, `Component`.`Installed`, `DisplayResourceDLL`, `DisplayResourceId`, `DescriptionResourceDLL`, `DescriptionResourceId` From `Shortcut`, `Feature`, `Component`, `File` WHERE `Target` = `Feature` AND `Shortcut`.`Component_` = `Component` AND `Component`.`KeyPath` = `File`.`File` AND ((`Feature`.`Action` = 1 OR `Feature`.`Action` = 2) OR (`Feature`.`Action` = 4 AND `Feature`.`Installed` = 0) OR (`Feature`.`Action` = 3 AND (`Feature`.`Installed` = 1 OR `Feature`.`Installed` = 2 OR `Feature`.`Installed` = 4)) OR (`Feature`.`Action` = NULL AND (`Component`.`Action` = 1 OR `Component`.`Action` = 2) AND (`Feature`.`Installed` = 1 OR `Feature`.`Installed` = 2 OR `Feature`.`Installed` = 4)))
    Action start 13:55:10: CreateShortcuts.
    MSI (s) (90:34) [13:55:10:638]: Doing action: FixCounters
    Action ended 13:55:10: CreateShortcuts. Return value 0.
    MSI (s) (90:34) [13:55:10:638]: Note: 1: 2235 2: 3: ExtendedType 4: SELECT `Action`,`Type`,`Source`,`Target`, NULL, `ExtendedType` FROM `CustomAction` WHERE `Action` = 'FixCounters'
    Return value 0.
    Action ended 13:55:20: INSTALL. Return value 1.
    Property(S): DiskPrompt = [1]
    Property(S): InstallMode = Typical
    Property(S): DOTNET20SP = #2
    Property(S): DOTNET35SP = #1
    Property(S): DBINSTANCEREGISTRY = SHAREPOINT
    Property(S): DBNAMEREGISTRY = WSS_Content
    Property(S): FILESTREAMSTORENAMEREGISTRY = FilestreamProvider_1
    Property(S): SCHEMASUFFIXREGISTRY = <suffix>
    Property(S): WelcomeBmp = WelcomeBmp
    Property(S): TRUSTSERVERCERTIFICATE = true
    Property(S): SCHEDULEMAINTAINERTASK = 1
    Property(S): MAINTAINERGC = GarbageCollection
    Property(S): MAINTAINERREFSCAN = r
    Property(S): MAINTAINERDELETE = d
    Property(S): MAINTAINERORPHAN = o
    Property(S): MAINTAINERCONSISTENCY = ConsistencyCheck
    Property(S): MAINTAINERCONSISTENCYREPAIR = true
    Property(S): OPENREADME = 1
    Property(S): FilestreamPoolTranLifetimeUnit = time
    Property(S): TEXTFILEVALUE = 0
    Property(S): CONSOLEVALUE = 0
    Property(S): DBTABLEVALUE = 0
    Property(S): EVENTLOGVALUE = 4
    Property(S): DBINSTANCE = jpntkyint01\sharepoint
    Property(S): DBNAME = WSS_Content
    Property(S): FILEGROUP = PRIMARY
    Property(S): INTEGRATEDSECURITY = 1
    Property(S): DBUSERNAME = username
    Property(S): DBPASSWORD = **********
    Property(S): FSDBINSTANCE = jpntkyint01\sharepoint
    Property(S): FSDBNAME = WSS_Content
    Property(S): FILESTREAMMETADATAFILEGROUP = PRIMARY
    Property(S): FILESTREAMFILEGROUP = RBSFilestreamProvider
    Property(S): FILESTREAMSTORENAME = FilestreamProvider_1
    Property(S): SCHEMASUFFIX = <suffix>
    Property(S): FILESTREAMTRANPOOLSIZE = 5
    Property(S): FilestreamPoolTranLifetimeTime = 00:01:00
    Property(S): FilestreamPoolTranLifetimeDays = 01
    Property(S): FILESTREAMMAXPOOLSIZE = 200000
    Property(S): FILESTREAMMAXSIZEINBANDWRITE = 1258290
    Property(S): FILESTREAMMAXSIZEINBANDREAD = 1258290
    Property(S): FILESTREAMMAXSIZEINLINEBLOB = 61140
    Property(S): FILESTREAMWRITEALLOCATIONSIZE = 0
    Property(S): MAINTAINERDURATION = 120
    Property(S): SQLServerText1 = 0
    Property(S): SQLServerVersionText3 = 0
    Property(S): _IsMaintenance2 = Modify
    Property(S): ModifyIcon = ModifyIco
    Property(S): RepairIcon = RepairIco
    Property(S): RemoveIcon = RemoveIco
    Property(S): ErrorIcon = ErrorIco
    Property(S): TARGETDIR = D:\
    Property(S): USERNAME = Windows User
    Property(S): _IsMaintenance = Reinstall
    Property(S): AgreeToLicense = No
    Property(S): Interrupted = 0
    Property(S): SetupIcon = SetupIco
    Property(S): Installed = 00:00:00
    Property(S): CreateFilesNoUI = C:\Windows\system32\;D:\RBS.msi
    Property(S): FixLogConfig = 4;0;0;0;0
    Property(S): FixRemoteFilestreamStoreConfig = remotefilestream;C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Provider Libraries\Filestream Provider\RemoteFilestreamProviderConfiguration.xml
    Property(S): FixFilestreamStoreConfig = filestream;C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Provider Libraries\Filestream Provider\FilestreamProviderConfiguration.xml
    Property(S): RegisterProviderFile = RegisterFilestreamProvider.sql
    Property(S): FILESTREAMTRANPOOLTRANLIFETIME = time 00:01:00
    Property(S): IsDotNet20Or40Installed = 1
    Property(S): ProgramMenuFolder.Sql = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
    Property(S): SAPBINOTEPAD = Notepad.exe
    Property(S): MaintainerDir1025 = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Maintainer\ar\
    Property(S): ClientDir3082 = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Client Library\es\
    Property(S): FilestreamDir1025 = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Provider Libraries\Filestream Provider\ar\
    Property(S): ProviderDir = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\Provider Libraries\
    Property(S): Eula3082 = C:\Program Files\Microsoft SQL Remote Blob Storage 10.50\3082\
    Property(S): ProgramFiles64Folder = C:\Program Files\
    Property(S): SourceDir = D:\
    Property(S): VersionNT = 601
    Property(S): Privileged = 1
    Property(S): Manufacturer = Microsoft Corporation
    Property(S): ProductCode = {56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    Property(S): ProductLanguage = 1033
    Property(S): ProductName = SQL Server 2008 R2 Remote Blob Store
    Property(S): ProductVersion = 10.50.1600.1
    Property(S): UpgradeCode = {BA2FF55A-725F-40E5-956E-D08AD0B8175B}
    Property(S): ProductShortName = Remote Blob Store
    Property(S): PlatformExtension = _64
    Property(S): PlatformId = x64
    Property(S): AppGuidRegKey = Redist_Uninstall_RegKey
    Property(S): ARPPRODUCTICON = ARPIco
    Property(S): ARPHELPLINK = http://www.microsoft.com/sqlserver
    Property(S): PIDTemplate = 53934<````=````=````=````=`````>@@@@@
    Property(S): PROMPTROLLBACKCOST = P
    Property(S): INSTALLLEVEL = 100
    Property(S): ALLUSERS = 1
    Property(S): SuccessIcon = SuccessIco
    Property(S): WarningIcon = WarningIco
    Property(S): LicenseIcon = LicenseIco
    Property(S): CompleteIcon = CompleteIco
    Property(S): CustomIcon = CustomIco
    Property(S): NewIcon = NewIco
    Property(S): UpIcon = UpIco
    Property(S): DialogBanner = BannerBmp
    Property(S): Details = 0
    Property(S): ReinstallModeText = omus
    Property(S): Display_IsBitmapDlg = 1
    Property(S): ProductID = none
    Property(S): ISENABLEDWUSFINISHDIALOG = 1
    Property(S): SQLServerVersionText1 = 0
    Property(S): SQLServerVersionText2 = 0
    Property(S): CA_ERRORCOUNT = 0
    Property(S): CA_WARNINGCOUNT = 0
    Property(S): CA_SUCCESSCOUNT = 0
    Property(S): UI_SHOWCOPYRIGHT = yes
    Property(S): ShowUserRegistrationDlg = 1
    Property(S): ButtonTextStyle = {\ButtonTextStyle}
    Property(S): DlgTextStyle = {\DlgTextStyle}
    Property(S): DlgTextStyleB = {\DlgTextStyleB}
    Property(S): DlgTitleStyle = {\DlgTitleStyle}
    Property(S): DlgTitleStyleB = {\DlgTitleStyleB}
    Property(S): FixedStyle = {\FixedStyle}
    Property(S): Error_UninstallDependant = 1
    Property(S): DefaultUIFont = Tahoma8
    Property(S): ProductFeaturesDefined = 1
    Property(S): RBSRegistryKey = Software\Microsoft\Remote Blob Storage
    Property(S): SCHEMASUFFIXVALID = 0
    Property(S): EnableCustomConfigDlg = 1
    Property(S): EnableCustomRemoveDlg = 1
    Property(S): EnableDotNetCheck = 1
    Property(S): FXAssemblyVersion = 2.0.0.0
    Property(S): VSAssemblyVersion = 8.0.0.0
    Property(S): EnableFeatureDlg = 1
    Property(S): MaintenanceWelcomeDlg_Next = MaintenanceTypeDlg
    Property(S): ReadyToRemoveDlg_Back = MaintenanceTypeDlg
    Property(S): CustomerInfoDlg_Next = ReadyToInstallDlg
    Property(S): CustomerInfoDlg_Back = LicenseAgreementDlg
    Property(S): ReadyToInstallDlg_NotInstalled_Back = CustomerInfoDlg
    Property(S): ReadyToInstallDlg_Installed_Back = MaintenanceTypeDlg
    Property(S): InstallWelcomeDlg_Next = LicenseAgreementDlg
    Property(S): LicenseAgreementDlg_Back = InstallWelcomeDlg
    Property(S): LicenseAgreementDlg_Next = CustomerInfoDlg
    Property(S): ModuleID_REDISTBASE = SQLBASE_Redist_64
    Property(S): ErrorDialog = ErrorDlg
    Property(S): MsiLogFileLocation = D:\rbs_install_log.txt
    Property(S): PackageCode = {1AC68E73-94F1-4A01-B229-82B2F73C3326}
    Property(S): ProductState = 5
    Property(S): ProductToBeRegistered = 1
    Property(S): CURRENTDIRECTORY = D:\
    Property(S): CLIENTUILEVEL = 3
    Property(S): CLIENTPROCESSID = 14660
    Property(S): PRODUCTLANGUAGE = 1033
    Property(S): VersionDatabase = 300
    Property(S): VersionMsi = 5.00
    Property(S): VersionNT64 = 601
    Property(S): WindowsBuild = 7601
    Property(S): ServicePackLevel = 1
    Property(S): ServicePackLevelMinor = 0
    Property(S): MsiNTProductType = 3
    Property(S): WindowsFolder = C:\Windows\
    Property(S): WindowsVolume = C:\
    Property(S): System64Folder = C:\Windows\system32\
    Property(S): SystemFolder = C:\Windows\SysWOW64\
    Property(S): RemoteAdminTS = 1
    Property(S): TempFolder = C:\Users\MEDSVR~1\AppData\Local\Temp\
    Property(S): ProgramFilesFolder = C:\Program Files (x86)\
    Property(S): CommonFilesFolder = C:\Program Files (x86)\Common Files\
    Property(S): CommonFiles64Folder = C:\Program Files\Common Files\
    Property(S): AppDataFolder = C:\Users\medsvradmin\AppData\Roaming\
    Property(S): FavoritesFolder = C:\Users\medsvradmin\Favorites\
    Property(S): NetHoodFolder = C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Network Shortcuts\
    Property(S): PersonalFolder = C:\Users\medsvradmin\Documents\
    Property(S): PrintHoodFolder = C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Printer Shortcuts\
    Property(S): RecentFolder = C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\Recent\
    Property(S): SendToFolder = C:\Users\medsvradmin\AppData\Roaming\Microsoft\Windows\SendTo\
    Property(S): TemplateFolder = C:\ProgramData\Microsoft\Windows\Templates\
    Property(S): CommonAppDataFolder = C:\ProgramData\
    Property(S): LocalAppDataFolder = C:\Users\medsvradmin\AppData\Local\
    Property(S): MyPicturesFolder = C:\Users\medsvradmin\Pictures\
    Property(S): AdminToolsFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools\
    Property(S): StartupFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\
    Property(S): ProgramMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\Programs\
    Property(S): StartMenuFolder = C:\ProgramData\Microsoft\Windows\Start Menu\
    Property(S): DesktopFolder = C:\Users\Public\Desktop\
    Property(S): FontsFolder = C:\Windows\Fonts\
    Property(S): GPTSupport = 1
    Property(S): OLEAdvtSupport = 1
    Property(S): ShellAdvtSupport = 1
    Property(S): MsiAMD64 = 6
    Property(S): Msix64 = 6
    Property(S): Intel = 6
    Property(S): PhysicalMemory = 8192
    Property(S): VirtualMemory = 6311
    Property(S): AdminUser = 1
    Property(S): MsiTrueAdminUser = 1
    Property(S): LogonUser = medsvradmin
    Property(S): UserSID = S-1-5-21-300911508-3398273753-3262312657-1000
    Property(S): UserLanguageID = 1033
    Property(S): ComputerName = JPNTKYINT01
    Property(S): SystemLanguageID = 1033
    Property(S): ScreenX = 1024
    Property(S): ScreenY = 768
    Property(S): CaptionHeight = 19
    Property(S): BorderTop = 1
    Property(S): BorderSide = 1
    Property(S): TextHeight = 16
    Property(S): TextInternalLeading = 3
    Property(S): ColorBits = 32
    Property(S): TTCSupport = 1
    Property(S): Time = 13:55:20
    Property(S): Date = 3/23/2015
    Property(S): MsiNetAssemblySupport = 4.0.30319.34209
    Property(S): MsiWin32AssemblySupport = 6.1.7601.17514
    Property(S): RedirectedDllSupport = 2
    Property(S): MsiRunningElevated = 1
    Property(S): DATABASE = C:\Windows\Installer\6847f.msi
    Property(S): OriginalDatabase = D:\RBS.msi
    Property(S): UILevel = 2
    Property(S): ACTION = INSTALL
    Property(S): ROOTDRIVE = D:\
    Property(S): CostingComplete = 1
    Property(S): OutOfDiskSpace = 0
    Property(S): OutOfNoRbDiskSpace = 0
    Property(S): PrimaryVolumeSpaceAvailable = 0
    Property(S): PrimaryVolumeSpaceRequired = 0
    Property(S): PrimaryVolumeSpaceRemaining = 0
    Property(S): DOTNETCOREPATH = 1
    Property(S): SourcedirProduct = {56D21E05-679B-40F2-94C1-DB0D7EB2E461}
    Property(S): SOURCEDIR = D:\
    MSI (s) (90:34) [13:55:20:201]: Note: 1: 1728
    MSI (s) (90:34) [13:55:20:201]: Product: SQL Server 2008 R2 Remote Blob Store -- Configuration completed successfully.
    MSI (s) (90:34) [13:55:20:201]: Windows Installer reconfigured the product. Product Name: SQL Server 2008 R2 Remote Blob Store. Product Version: 10.50.1600.1. Product Language: 1033. Manufacturer: Microsoft Corporation. Reconfiguration success or error status: 0.
    MSI (s) (90:34) [13:55:20:217]: Deferring clean up of packages/files, if any exist
    MSI (s) (90:34) [13:55:20:217]: MainEngineThread is returning 0
    MSI (s) (90:A4) [13:55:20:217]: RESTART MANAGER: Session closed.
    MSI (s) (90:A4) [13:55:20:217]: No System Restore sequence number for this installation.
    === Logging stopped: 3/23/2015 13:55:20 ===
    MSI (s) (90:A4) [13:55:20:217]: User policy value 'DisableRollback' is 0
    MSI (s) (90:A4) [13:55:20:217]: Machine policy value 'DisableRollback' is 0
    MSI (s) (90:A4) [13:55:20:217]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (90:A4) [13:55:20:217]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (90:A4) [13:55:20:217]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (90:A4) [13:55:20:217]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (s) (90:A4) [13:55:20:217]: Restoring environment variables
    MSI (s) (90:A4) [13:55:20:217]: Destroying RemoteAPI object.
    MSI (s) (90:FC) [13:55:20:233]: Custom Action Manager thread ending.
    MSI (c) (44:F8) [13:55:20:233]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied. Counter after decrement: -1
    MSI (c) (44:F8) [13:55:20:233]: MainEngineThread is returning 0
    === Verbose logging stopped: 3/23/2015 13:55:20 ===

    I copied and pasted the strips from SSMS in another computer
    CREATE
    TABLE [dbo].[Taxonomy](
    [fish_id] [numeric](38, 0)
    IDENTITY(1,1)
    NOT NULL,
    [fish_order] [varchar](50)
    NOT NULL,
    [fish_family] [varchar](50)
    NOT NULL,
    [fish_genus] [varchar](50)
    NOT NULL,
    [fish_species] [varchar](50)
    NOT NULL,
     CONSTRAINT
    [Taxonomy_pk] PRIMARY
    KEY CLUSTERED
    [fish_id] ASC
    )WITH
    (PAD_INDEX
    = OFF,
    STATISTICS_NORECOMPUTE =
    OFF,
    IGNORE_DUP_KEY =
    OFF, ALLOW_ROW_LOCKS
    = ON,
    ALLOW_PAGE_LOCKS =
    ON)
    ON [PRIMARY]
    ON [PRIMARY]

  • Mac mini can not find the NAS

    In my network I have a Mac mini, AirPort Extreme base station and a Netgear ReadyNAS Duo v2. Everything is connected by cable. The problem is that the Mac mini can not find the NAS. Mac mini is looking for wirelessly connected devices, type TimeCapsule. How do I get my Mac mini to find the NAS and set the NAS as a source of data storage?

    I have a ReadyNAS and use it as a Time Machine destination with no problems, even over WiFi. The ReadyNAS and Mac are both on the same LAN (even though the Mac is on WiFi), please check to see if your WiFi is on a different LAN to the Ethernet side of things, I have my Airport set to bridging mode so both sides of the AirPort count as the same LAN.
    Next you need to check you have actually configured Time Machine in the ReadyNAS, as shipped it is initially turned off. You need to go to the ReadyNAS web management interface (FrontView) and then click on Backup on the left, and then select Time Machine. You also need to make sure Bonjour is enabled for the ReadyNAS, this is accessed by clicking on Services on the left and then selecting Discovery Services, make sure all the Bonjour options are ticked on.

  • Error!! Can not find the delivery details for the delivery Id :

    hi all,
    I have a report which i need to burst in seven different reports wherein my delivery key is column "emp_id". Now when i schedule the report to burst then the report completes with a warning. I see that there are various delivery cycles for the report and for one of the cycles i get the following message
    Error!! Can not find the delivery details for the delivery Id :
    hence, what happens due to this is, even there are successful deliveries for other delivery ids but then i get only two rows of data in each of the seven bursted ouput xls files. wheareas the data runs in thousands of rows for each cycle.
    Hence whats happening is, that due to error /warning in one of the delivery cycles other reports are also not showing data.
    I am not sure whats causing the issue and why i am not getting complete bursted files out.
    Please suggest
    Thanks
    Ronny

    I guess, you are in 10.1.3.3.2 :),
    in the latest release 10.1.3.4.1, there are more enhancement wrto bursting and performance i believe.
    check th release notes
    can you send me the xml and bursting query you have, i can try simulating in my local.

Maybe you are looking for

  • CachedRowSet displaying 5 records at a time

    hi all, Iam working on CachedRowSet is it possible to records in groups of 5 from a whole lot of 100 records?? pls let me know... thanks in advance Karthik

  • Problem with rotating music iPhone6

    Hello,   I have one really annoying problem with my iPhone 6. I had it since i bought it and I hoped that with the new iOS 8.2 it's gonna be fixed, but unfortunately it wasn't. The problem is when I listen to music and I rotate my phone into landscap

  • Insert query takes too much time

    I have two select clauses as follows: "select * from employee" This returns me 6000 rows. & I have next clause as "select * from employee where userid in(1,2,3,....,3000)" This returns me 3000 rows. Now i have to insert the result of above queries in

  • DBMS export extension

    Does anyone know what the DBMS export extension is in the quote from the following article: "... revoke public execute permissions for DBMS export extension ..." http://news.com.com/Patched+Oracle+database+still+at+risk%2C+bughunter+says/2100-1002_3-

  • How to crop or mask vector graphic compositions?

    Hi Team, I'm loving Fireworks CS5, and want to take advantage the CSS & Images export features.  This, of course, requires that design elements fit into the rectangles to be used as the "div containers" and do not overlap them.  Often the original de