You could use the query you have above to create a script that does something like:
SELECT schemas.name
, all_objects.name
, 'ALTER TABLE ' + QUOTENAME( schemas.name ) + '.' + QUOTENAME( all_objects.name ) + ' ALTER COLUMN ' + QUOTENAME( computed_columns.name ) + ' ADD PERSISTED;'
FROM sys.schemas
INNER JOIN sys.all_objects
ON schemas.schema_id = all_objects.schema_id
INNER JOIN sys.computed_columns
ON all_objects.object_id = computed_columns.object_id
AND computed_columns.is_persisted = 0;
The alter table definition can be found http://msdn.microsoft.com/en-us/library/ms190273.aspx.
Be aware of the limitations of persisted columns (non-deterministic functions, etc) could very well cause part of the script to fail.