Bogiecom.com
  • About
  • Magento
  • Sitecore
  • WordPress

Category Archives: Miva Merchant 5.5

Miva Merchant Product Attribute Export – Update Pricing with Powershell

Posted on November 9, 2011 by bc-admin

If you’ve ever wanted a tab delimited list of product attributes and prices to update pricing, here’s one way:

Export product attributes through ‘Utilities > Export Data > Export Attributes to XML File’

  1. When exporting choose ‘Replace All Mode
  2. You will have to add a root level element around the xml generated by miva and the file:

    1
    2
    PS C:\>$a = Get-Content .\provide.xml
    PS C:\>Set-Content .\provide.xml -value "<products>",$a,"</products>"      

    Now bring in file as xml:

    1
    PS C:\>$xml = [xml] (Get-Content .\provide.xml)

    Run this command to generate a tab delimited list of Product_Code, Code, & Price

    1
    2
    PS C:\>$xml.Products.ProductAttributeOption_Add |
                   foreach { $_.product_code + "`t" + $_.Price } > .\provide-list.txt

    For more information on Powershell’s xml capabilities and how easy it is to use XML with Powershell visit Powershell XML on Code Project

    .

Posted in Miva Merchant 5.5, Powershell, Updating Product Attributes, XML | Leave a comment |

Pages

  • About
  • Magento
  • Sitecore
  • WordPress

Archives

  • January 2017
  • December 2013
  • November 2013
  • February 2013
  • January 2013
  • August 2012
  • July 2012
  • June 2012
  • May 2012
  • November 2011
  • March 2010
  • February 2010
  • January 2010
  • December 2009
  • November 2009
  • September 2009

Categories

  • .NET
  • Air Force
  • Apache Configuration
  • Bash
  • C#
  • Comma-Delimited
  • Custom Field Validator
  • Date Format
  • Dump Files
  • Files
  • Grep
  • Grooveshark
  • HTML
  • Image Resizing
  • Imagick
  • Integration
  • jQuery
  • Konami Code
  • Linux
  • Magento
  • Magento Third Party CMS Integration
  • Mini Shuttle
  • Miva Merchant 5.5
  • MySQL
  • PHP
  • Powershell
  • Regular Expressions
  • Rename-Item
  • Sed
  • Shell Scripting
  • Sitecore
  • Strings
  • Uncategorized
  • Updating Product Attributes
  • Video Games
  • Wordpress
  • X-37
  • XML
  • YUI Konami Event

CyberChimps WordPress Themes

© 2008 - 2016 Bogiecom.com