@echo off :: ############################################################################### :: # :: # Copyright (C) 2009-2013 Nintendo. All rights reserved. :: # :: # These coded instructions, statements, and computer programs contain :: # proprietary information of Nintendo of America Inc. and/or Nintendo :: # Company Ltd., and are protected by Federal copyright law. They may :: # not be disclosed to third parties or copied or duplicated in any form, :: # in whole or in part, without the prior written consent of Nintendo. :: # :: ############################################################################### if /I "%1"=="" ( echo Usage: pcfsoversata -enable^|-disable echo. -enable Enable PCFS over SATA connectivity. echo. -disable Disable PCFS over SATA connectivity. ) else ( if /I "%1"=="-enable" ( call cafeoptions.bat -pcfsoversata > nul set USE_PCFS_OVER_SATA=1 ) else ( if /I "%1"=="-disable" ( call cafeoptions.bat -nopcfsoversata > nul set USE_PCFS_OVER_SATA=0 ) else ( echo Bad argument '%1' on command line. Please use -enable or -disable ) ) )