Important Notice: Sustaining QB-Flow for Long-Term Value

To continue providing the reliable and efficient service you’ve come to expect, we need to ensure that QB-Flow remains sustainable. As such, we will be transitioning to a usage-based, tiered graduated pricing model to support the ongoing development, maintenance, and delivery of the platform.

This decision reflects our commitment to:

  • Delivering Value: QB-Flow automates QuickBooks updates, saving significant time and costs compared to manual processes.
  • Continuous Improvement: Your contributions directly support the development of new features, updates, and enhanced functionality.
  • Scalability and Support: Ensuring we can scale effectively to meet your needs and maintain robust support services.

We appreciate your understanding as we take this step to ensure QB-Flow can continue to grow and provide value to all our partners.

If you have any questions about this transition or the new pricing model, please don’t hesitate to reach out.

Scripted Quickbooks Updates for Nerdio Partners

Flowdevs and Nerdio partnered up to offer the first automatic Quickbooks updater in a portable Executable. To show off the automation capabilities of flowdevs we have offered this for free to all nerdio partners

Flowdevs and Nerdio partnered up to offer the first automatic Quickbooks updater in a portable Executable(QB-Flow). To show off the automation capabilities of flowdevs we have offered this for free to all Nerdio partners.

Contact us for Custom Automations
Quickbooks automated updates using Scripted Actions in Nerdio developed by FlowDevs.io
#Enter your NMM ID found here: https://%nerdiourl%/updates
$nmmid = ""

$QBUpdateURL = "https://flowdevsblob.blob.core.windows.net/qbflow/QB-flow.exe"
$QBdestination = "c:\windows\temp\qb-flow.exe"

$webclient = New-Object System.Net.WebClient
$webclient.DownloadFile($QBUpdateURL , $QBdestination)

Start-process $QBdestination -ArgumentList "/nmmid $($nmmid)" -NoNewWindow -Wait