Raw New Markdown
Generating updated version of doc...
Rendered New Markdown
Generating updated version of doc...
---
ms.topic: include
ms.date: 11/09/2018
author: jianleishen
ms.author: jianleishen
---
## Review deployed resources
The pipeline automatically creates the output folder in the adftutorial blob container. Then, it copies the emp.txt file from the input folder to the output folder.
1. In the Azure portal, on the **adftutorial** container page, select **Refresh** to see the output folder.
:::image type="content" source="media/data-factory-quickstart-verify-output-cleanup/output-refresh.png" alt-text="Screenshot shows the container page where you can refresh the page.":::
2. Select **output** in the folder list.
3. Confirm that the **emp.txt** is copied to the output folder.
:::image type="content" source="media/data-factory-quickstart-verify-output-cleanup/output-file.png" alt-text="Screenshot shows the output folder contents.":::
## Clean up resources
You can clean up the resources that you created in the Quickstart in two ways. You can delete the [Azure resource group](../../azure-resource-manager/management/overview.md), which includes all the resources in the resource group. If you want to keep the other resources intact, delete only the data factory you created in this tutorial.
Deleting a resource group deletes all resources including data factories in it. Run the following command to delete the entire resource group:
```powershell
Remove-AzResourceGroup -ResourceGroupName $resourcegroupname
```
> [!Note]
> Dropping a resource group may take some time. Please be patient with the process
If you want to delete just the data factory, not the entire resource group, run the following command:
```powershell
Remove-AzDataFactoryV2 -Name $dataFactoryName -ResourceGroupName $resourceGroupName
```